| 1234567891011121314151617181920 |
- //
- // System.Data.OleDb.OleDbException
- //
- // Author:
- // Rodrigo Moya ([email protected])
- //
- // Copyright (C) Rodrigo Moya, 2002
- //
- using System.Data;
- using System.Data.Common;
- using System.Runtime.InteropServices;
- namespace System.Data.OleDb
- {
- [Serializable]
- public sealed class OleDbException : ExternalException
- {
- }
- }
|