Tue Dec 18 18:46:22 CET 2001 Paolo Molaro <lupus@ximian.com>
[mono.git] / mcs / class / corlib / System.Reflection / ReflectionTypeLoadException.cs
1 // System.Reflection.ReflectionTypeLoadException
2 //
3 // Sean MacIsaac (macisaac@ximian.com)
4 //
5 // (C) 2001 Ximian, Inc.
6
7 namespace System.Reflection
8 {
9         public sealed class ReflectionTypeLoadException : SystemException
10         {
11
12                 public Type[] Types {
13                         get {
14                                 // FIXME
15                                 return null;
16                         }
17                 }
18
19                 public Exception[] LoaderExceptions {
20                         get {
21                                 // FIXME
22                                 return null;
23                         }
24                 }
25         }
26 }