* AttributeUseage.cs: Should define AttributeUsageAttribute.
[mono.git] / mcs / class / corlib / System.IO / FileLoadException.cs
1 //
2 // System.IO.FileLoadException.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 FileLoadException : SystemException {
13                 // Constructors
14                 public FileLoadException ()
15                         : base ("I/O Error")
16                 {
17                 }
18
19                 public FileLoadException (string message)
20                         : base (message)
21                 {
22                 }
23
24                 public FileLoadException (string message, Exception inner)
25                         : base (message, inner)
26                 {
27                 }
28
29                 public string FusionLog {
30                         get {
31                                 // FIXME
32                                 return null;
33                         }
34                 }
35         }
36 }