2004-04-06 Andreas Nahr <ClassDevelopment@A-SoftTech.com>
[mono.git] / mcs / class / System.Data / System.Data.Sql / InvalidUdtException.cs
1 //
2 // System.Data.Sql.InvalidUdtException
3 //
4 // Author:
5 //   Tim Coleman (tim@timcoleman.com)
6 //
7 // Copyright (C) Tim Coleman, 2003
8 //
9
10 #if NET_1_2
11
12 using System;
13
14 namespace System.Data.Sql {
15         public sealed class InvalidUdtException : Exception
16         {
17         }
18 }
19
20 #endif