singrdk/base/Libraries/System.IO/PathTooLongException.cs

39 lines
1.2 KiB
C#
Raw Permalink Normal View History

2008-03-05 09:52:00 -05:00
// ==++==
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// ==--==
2008-11-17 18:29:00 -05:00
//============================================================
//
// Class: PathTooLongException
//
// Purpose: Exception for paths and/or filenames that are
// too long.
//
//===========================================================
2008-03-05 09:52:00 -05:00
using System;
2008-11-17 18:29:00 -05:00
namespace System.IO
{
2008-03-05 09:52:00 -05:00
//| <include file='doc\PathTooLongException.uex' path='docs/doc[@for="PathTooLongException"]/*' />
public class PathTooLongException : IOException
{
//| <include file='doc\PathTooLongException.uex' path='docs/doc[@for="PathTooLongException.PathTooLongException"]/*' />
public PathTooLongException()
: base("IO.PathTooLong") {
}
//| <include file='doc\PathTooLongException.uex' path='docs/doc[@for="PathTooLongException.PathTooLongException1"]/*' />
public PathTooLongException(String message)
: base(message) {
}
//| <include file='doc\PathTooLongException.uex' path='docs/doc[@for="PathTooLongException.PathTooLongException2"]/*' />
public PathTooLongException(String message, Exception innerException)
: base(message, innerException) {
}
}
}