Welcome to mirror list, hosted at ThFree Co, Russian Federation.

SqlNullValueException.cs « System.Data.SqlTypes « System.Data « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 19c3c13ed4d14b009f8e6bf4de1acec0900fee63 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
//
// System.Data.SqlNullValueException.cs
//
// Author: Duncan Mak  (duncan@ximian.com)
//
// (C) Ximian, Inc.

using System;
using System.Globalization;
using System.Runtime.Serialization;

namespace System.Data.SqlTypes {

	[Serializable]
	public class SqlNullValueException : SqlTypeException
	{
		public SqlNullValueException ()
			: base (Locale.GetText ("The value property is null"))
		{
		}

		public SqlNullValueException (string message)
			: base (message)
		{
		}
	}
}