OleDbException.cs 329 B

1234567891011121314151617181920
  1. //
  2. // System.Data.OleDb.OleDbException
  3. //
  4. // Author:
  5. // Rodrigo Moya ([email protected])
  6. //
  7. // Copyright (C) Rodrigo Moya, 2002
  8. //
  9. using System.Data;
  10. using System.Data.Common;
  11. using System.Runtime.InteropServices;
  12. namespace System.Data.OleDb
  13. {
  14. [Serializable]
  15. public sealed class OleDbException : ExternalException
  16. {
  17. }
  18. }