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

InternalBufferOverflowException.cs « System.IO « System « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1c30e97cf0979b4f7a44b1d1cb04b41f48d76d6d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
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
	}
}