New test.
[mono.git] / mcs / class / corlib / System / BadImageFormatException.cs
1 //
2 // System.BadImageFormatException.cs
3 //
4 // Authors:
5 //   Sean MacIsaac (macisaac@ximian.com)
6 //   Duncan Mak (duncan@ximian.com)
7 //   Andreas Nahr (ClassDevelopment@A-SoftTech.com)
8 //
9 // (C) 2001 Ximian, Inc.
10 // Copyright (C) 2004-2005 Novell, Inc (http://www.novell.com)
11 //
12 // Permission is hereby granted, free of charge, to any person obtaining
13 // a copy of this software and associated documentation files (the
14 // "Software"), to deal in the Software without restriction, including
15 // without limitation the rights to use, copy, modify, merge, publish,
16 // distribute, sublicense, and/or sell copies of the Software, and to
17 // permit persons to whom the Software is furnished to do so, subject to
18 // the following conditions:
19 // 
20 // The above copyright notice and this permission notice shall be
21 // included in all copies or substantial portions of the Software.
22 // 
23 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
24 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
25 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
26 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
27 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
28 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
29 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
30 //
31
32 using System.Runtime.Serialization;
33 using System.Security.Permissions;
34
35 namespace System
36 {
37         [Serializable]
38         public class BadImageFormatException : SystemException
39         {
40                 const int Result = unchecked ((int)0x8007000B);
41
42                 // Fields
43                 private string fileName;
44                 private string fusionLog;
45
46                 // Constructors
47                 public BadImageFormatException ()
48                         : base (Locale.GetText ("Invalid file image."))
49                 {
50                         HResult = Result;
51                 }
52
53                 public BadImageFormatException (string message)
54                         : base (message)
55                 {
56                         HResult = Result;
57                 }
58
59                 protected BadImageFormatException (SerializationInfo info, StreamingContext context)
60                         : base (info, context)
61                 {
62                         fileName = info.GetString ("BadImageFormat_FileName");
63                         fusionLog = info.GetString ("BadImageFormat_FusionLog");
64                 }
65
66                 public BadImageFormatException (string message, Exception innerException)
67                         : base (message, innerException)
68                 {
69                         HResult = Result;
70                 }
71
72                 public BadImageFormatException (string message, string fileName)
73                         : base (message)
74                 {
75                         this.fileName = fileName;
76                         HResult = Result;
77                 }
78
79                 public BadImageFormatException (string message, string fileName, Exception innerException)
80                         : base (message, innerException)
81                 {
82                         this.fileName = fileName;
83                         HResult = Result;
84                 }
85
86                 // Properties
87                 public override string Message
88                 {
89                         get { return base.Message; }
90                 }
91
92                 public string FileName
93                 {
94                         get { return fileName; }
95                 }
96
97                 [MonoTODO ("Probably not entirely correct. fusionLog needs to be set somehow (we are probably missing internal constuctor)")]
98                 public string FusionLog {
99                         // note: MS runtime throws a SecurityException when the Exception is created
100                         // but a FileLoadException once the exception as been thrown. Mono always
101                         // throw a SecurityException in both case (anyway fusionLog is currently empty)
102                         [SecurityPermission (SecurityAction.Demand, ControlEvidence=true, ControlPolicy=true)]
103                         get { return fusionLog; }
104                 }
105
106                 // Methods
107                 public override void GetObjectData (SerializationInfo info, StreamingContext context)
108                 {
109                         base.GetObjectData (info, context);
110                         info.AddValue ("BadImageFormat_FileName", fileName);
111                         info.AddValue ("BadImageFormat_FusionLog", fusionLog);
112                 }
113
114                 public override string ToString ()
115                 {
116                         if (fileName != null)
117                                 return Locale.GetText ("Filename: ") + fileName;
118                         return base.ToString ();
119                 }
120         }
121 }