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

PathTooLongException.cs « System.IO « corlib « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5f5f5229a18260f6ceb895c212c16cba0cdefd2c (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
42
43
//	
// System.IO.PathTooLongException.cs
//
// Author:
//	Duncan Mak (duncan@ximian.com)
//
// 2002 (C) Ximian, Inc. http://www.ximian.com
//

using System;
using System.Globalization;
using System.IO;
using System.Runtime.Serialization;

namespace System.IO
{
	   [Serializable]
	   public class PathTooLongException : IOException
	   {
			 // Constructors
			 public PathTooLongException ()
				    : base (Locale.GetText ("Pathname is longer than the maximum length"))
			 {
			 }

			 public PathTooLongException (string message)
				    : base (message)
			 {
			 }
			 
			 protected PathTooLongException (SerializationInfo info,
				    StreamingContext context)
				    : base (info, context)
			 {
			 }

			 public PathTooLongException (string message, Exception innerException)
				    :base (message, innerException)
			 {
			 }
				    
	   }
}