Wed Jan 9 16:04:39 MST 2002 Matt Kimball <matt@kimball.net>
[mono.git] / mcs / class / corlib / System.IO / IOException.cs
1 //
2 // System.IO.IOException.cs
3 //
4 // Author:
5 //   Paolo Molaro (lupus@ximian.com)
6 //
7 // (C) 2001 Ximian, Inc.  http://www.ximian.com
8 //
9
10 namespace System.IO {
11
12         public class IOException : SystemException {
13                 // Constructors
14                 public IOException ()
15                         : base ("I/O Error")
16                 {
17                 }
18
19                 public IOException (string message)
20                         : base (message)
21                 {
22                 }
23
24                 public IOException (string message, Exception inner)
25                         : base (message, inner)
26                 {
27                 }
28         }
29 }