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

TdsNullValueException.cs « Mono.Data.TdsTypes « Mono.Data.TdsClient « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0dd4a35166cae329f5993b86b0b7ea0156705d7d (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
28
29
30
31
32
//
// Mono.Data.TdsTypes.TdsNullValueException.cs
//
// Authors:
//   Tim Coleman (tim@timcoleman.com)
//
// Copyright (C) Tim Coleman, 2002

using Mono.Data.TdsClient;
using System;
using System.Globalization;
using System.Runtime.Serialization;

namespace Mono.Data.TdsTypes {
	[Serializable]
	public class TdsNullValueException : TdsTypeException
	{
		#region Constructors

		public TdsNullValueException ()
			: base (Locale.GetText ("Data is Null. This method or property cannot be called on Null values."))
		{
		}

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

		#endregion // Constructors
	}
}