2002-08-15 Tim Coleman <tim@timcoleman.com>
[mono.git] / mcs / class / System / System.IO / InternalBufferOverflowException.cs
1 // \r
2 // System.IO.InternalBufferOverflowException.cs\r
3 //\r
4 // Author:\r
5 //   Tim Coleman (tim@timcoleman.com)\r
6 //\r
7 // Copyright (C) Tim Coleman, 2002\r
8 //\r
9 \r
10 using System;\r
11 using System.Runtime.Serialization;\r
12 \r
13 namespace System.IO {\r
14         [Serializable]\r
15         public class InternalBufferOverflowException : SystemException {\r
16 \r
17                 #region Constructors\r
18 \r
19                 public InternalBufferOverflowException ()\r
20                         : base ("Internal buffer overflow occurred.")\r
21                 {\r
22                 }\r
23 \r
24                 public InternalBufferOverflowException (string message)\r
25                         : base (message)\r
26                 {\r
27                 }\r
28 \r
29                 public InternalBufferOverflowException (SerializationInfo info, StreamingContext context)\r
30                         : base (info, context)\r
31                 {\r
32                 }\r
33 \r
34                 public InternalBufferOverflowException (string message, Exception innerException)\r
35                         : base (message, innerException)\r
36                 {\r
37                 }\r
38 \r
39                 #endregion // Constructors\r
40         }\r
41 }\r