InternalBufferOverflowException.cs 849 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. //
  2. // System.IO.InternalBufferOverflowException.cs
  3. //
  4. // Author:
  5. // Tim Coleman ([email protected])
  6. //
  7. // Copyright (C) Tim Coleman, 2002
  8. //
  9. using System;
  10. using System.Runtime.Serialization;
  11. namespace System.IO {
  12. [Serializable]
  13. public class InternalBufferOverflowException : SystemException {
  14. #region Constructors
  15. public InternalBufferOverflowException ()
  16. : base ("Internal buffer overflow occurred.")
  17. {
  18. }
  19. public InternalBufferOverflowException (string message)
  20. : base (message)
  21. {
  22. }
  23. protected InternalBufferOverflowException (SerializationInfo info, StreamingContext context)
  24. : base (info, context)
  25. {
  26. }
  27. public InternalBufferOverflowException (string message, Exception innerException)
  28. : base (message, innerException)
  29. {
  30. }
  31. #endregion // Constructors
  32. }
  33. }