// ==++==
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// ==--==
/*============================================================
**
** Class: FormatException
**
**
** Purpose: Exception to designate an illegal argument to Format.
**
** Date: February 10, 1998
**
===========================================================*/
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) {
}
}
}