// ==++==
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// ==--==
//============================================================
//
// Class: PathTooLongException
//
// Purpose: Exception for paths and/or filenames that are
// too long.
//
//===========================================================
using System;
namespace System.IO
{
//|
public class PathTooLongException : IOException
{
//|
public PathTooLongException()
: base("IO.PathTooLong") {
}
//|
public PathTooLongException(String message)
: base(message) {
}
//|
public PathTooLongException(String message, Exception innerException)
: base(message, innerException) {
}
}
}