// ==++==
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// ==--==
//============================================================
//
// Class: FormatException
//
// Purpose: Exception to designate an illegal argument to Format.
//
//===========================================================
namespace System
{
using System;
//|
public class FormatException : SystemException {
//|
public FormatException()
: base("Arg_FormatException") {
}
//|
public FormatException(String message)
: base(message) {
}
//|
public FormatException(String message, Exception innerException)
: base(message, innerException) {
}
}
}