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

TdsTypeException.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: 269aa76461c7de81ef3f4e2a7dba91b43f7c0073 (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.TdsTypeException.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 TdsTypeException : SystemException
	{
		#region Constructors

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

		protected TdsTypeException (SerializationInfo info, StreamingContext context)
			: base (info, context)
		{
		}

		#endregion // Constructors
	}
}