2001-11-21 Miguel de Icaza <miguel@ximian.com>
[mono.git] / mcs / class / corlib / System / FormatException.cs
1 //
2 // System.FormatException.cs
3 //
4 // Author:
5 //   Joe Shaw (joe@ximian.com)
6 //
7 // (C) 2001 Ximian, Inc.  http://www.ximian.com
8 //
9
10 using System.Globalization;
11
12 namespace System {
13
14         public class FormatException : SystemException {
15                 // Constructors
16                 public FormatException ()
17                         : base (Locale.GetText ("Invalid format"))
18                 {
19                 }
20
21                 public FormatException (string message)
22                         : base (message)
23                 {
24                 }
25
26                 public FormatException (string message, Exception inner)
27                         : base (message, inner)
28                 {
29                 }
30         }
31 }