singrdk/base/Kernel/System/FormatException.cs

37 lines
1.1 KiB
C#
Raw Normal View History

2008-03-05 09:52:00 -05:00
// ==++==
//
// 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;
//| <include path='docs/doc[@for="FormatException"]/*' />
public class FormatException : SystemException {
//| <include path='docs/doc[@for="FormatException.FormatException"]/*' />
public FormatException()
: base("Arg_FormatException") {
}
//| <include path='docs/doc[@for="FormatException.FormatException1"]/*' />
public FormatException(String message)
: base(message) {
}
//| <include path='docs/doc[@for="FormatException.FormatException2"]/*' />
public FormatException(String message, Exception innerException)
: base(message, innerException) {
}
}
}