2002-05-08 Rodrigo Moya <rodrigo@ximian.com>
[mono.git] / mcs / class / System.Data / System.Data.SqlTypes / SqlTypeException.cs
1 //
2 // System.Data.SqlTypeException.cs
3 //
4 // Author: Duncan Mak  (duncan@ximian.com)
5 //
6 // (C) Ximian, Inc.
7
8 using System;
9 using System.Globalization;
10 using System.Runtime.Serialization;
11
12 namespace System.Data.SqlTypes {
13
14         [Serializable]                  
15         public class SqlTypeException : SystemException
16         {
17                 public SqlTypeException (string message)
18                         : base (message)
19                 {
20                 }
21
22                 protected SqlTypeException (SerializationInfo info, StreamingContext context)
23                         : base (info, context)
24                 {
25                 }
26         }
27 }