| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- //
- // System.IO.InternalBufferOverflowException.cs
- //
- // Author:
- // Tim Coleman ([email protected])
- //
- // Copyright (C) Tim Coleman, 2002
- //
- using System;
- using System.Runtime.Serialization;
- namespace System.IO {
- [Serializable]
- public class InternalBufferOverflowException : SystemException {
- #region Constructors
- public InternalBufferOverflowException ()
- : base ("Internal buffer overflow occurred.")
- {
- }
- public InternalBufferOverflowException (string message)
- : base (message)
- {
- }
- protected InternalBufferOverflowException (SerializationInfo info, StreamingContext context)
- : base (info, context)
- {
- }
- public InternalBufferOverflowException (string message, Exception innerException)
- : base (message, innerException)
- {
- }
- #endregion // Constructors
- }
- }
|