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

SqlTruncateException.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: 067b9195f171a3409731bca66f79fe2e6a72d27b (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.SqlTruncateException.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 SqlTruncateException : SqlTypeException
	{
		public SqlTruncateException ()
			: base (Locale.GetText ("This value is being truncated"))
		{
		}

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