Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mcs/class/System/System.IO/InternalBufferOverflowException.cs')
-rw-r--r--mcs/class/System/System.IO/InternalBufferOverflowException.cs41
1 files changed, 41 insertions, 0 deletions
diff --git a/mcs/class/System/System.IO/InternalBufferOverflowException.cs b/mcs/class/System/System.IO/InternalBufferOverflowException.cs
new file mode 100644
index 00000000000..1c30e97cf09
--- /dev/null
+++ b/mcs/class/System/System.IO/InternalBufferOverflowException.cs
@@ -0,0 +1,41 @@
+//
+// System.IO.InternalBufferOverflowException.cs
+//
+// Author:
+// Tim Coleman (tim@timcoleman.com)
+//
+// 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)
+ {
+ }
+
+ public InternalBufferOverflowException (SerializationInfo info, StreamingContext context)
+ : base (info, context)
+ {
+ }
+
+ public InternalBufferOverflowException (string message, Exception innerException)
+ : base (message, innerException)
+ {
+ }
+
+ #endregion // Constructors
+ }
+}