OleDbException.cs 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. //
  2. // System.Data.OleDb.OleDbException
  3. //
  4. // Author:
  5. // Rodrigo Moya ([email protected])
  6. // Tim Coleman ([email protected])
  7. //
  8. // Copyright (C) Rodrigo Moya, 2002
  9. // Copyright (C) Tim Coleman, 2002
  10. //
  11. using System.Data;
  12. using System.Data.Common;
  13. using System.Runtime.InteropServices;
  14. using System.Runtime.Serialization;
  15. namespace System.Data.OleDb
  16. {
  17. [Serializable]
  18. public sealed class OleDbException : ExternalException
  19. {
  20. #region Properties
  21. public override int ErrorCode {
  22. [MonoTODO]
  23. get { throw new NotImplementedException (); }
  24. }
  25. public OleDbErrorCollection Errors {
  26. [MonoTODO]
  27. get { throw new NotImplementedException (); }
  28. }
  29. public override string Message {
  30. [MonoTODO]
  31. get { throw new NotImplementedException (); }
  32. }
  33. public override string Source {
  34. [MonoTODO]
  35. get { throw new NotImplementedException (); }
  36. }
  37. #endregion // Properties
  38. #region Methods
  39. [MonoTODO]
  40. public override void GetObjectData (SerializationInfo si, StreamingContext context)
  41. {
  42. throw new NotImplementedException ();
  43. }
  44. #endregion // Methods
  45. }
  46. }