Merge pull request #744 from echampet/bug-10001
[mono.git] / mcs / class / System.Web / System.Web / HttpCompileException.cs
1 // 
2 // System.Web.HttpCompileException.cs
3 //
4 // Authors:
5 //      Tim Coleman (tim@timcoleman.com)
6 //      Sebastien Pouliot  <sebastien@ximian.com>
7 //
8 // Copyright (C) Tim Coleman, 2002
9 // Copyright (C) 2005-2009 Novell, Inc (http://www.novell.com)
10 //
11 // Permission is hereby granted, free of charge, to any person obtaining
12 // a copy of this software and associated documentation files (the
13 // "Software"), to deal in the Software without restriction, including
14 // without limitation the rights to use, copy, modify, merge, publish,
15 // distribute, sublicense, and/or sell copies of the Software, and to
16 // permit persons to whom the Software is furnished to do so, subject to
17 // the following conditions:
18 // 
19 // The above copyright notice and this permission notice shall be
20 // included in all copies or substantial portions of the Software.
21 // 
22 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
23 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
24 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
25 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
26 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
27 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
28 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
29 //
30
31 using System.CodeDom.Compiler;
32 using System.Runtime.Serialization;
33 using System.Security.Permissions;
34
35 namespace System.Web
36 {
37         // CAS - no InheritanceDemand here as the class is sealed
38         [AspNetHostingPermission (SecurityAction.LinkDemand, Level = AspNetHostingPermissionLevel.Minimal)]
39         [Serializable]
40         public sealed class HttpCompileException : HttpException
41         {
42                 CompilerResults results;
43                 string sourceCode;
44
45                 public HttpCompileException ()
46                 {
47                 }
48
49                 public HttpCompileException (string message)
50                         : base (message)
51                 {
52                 }
53
54                 public HttpCompileException (string message, Exception innerException)
55                         : base (message, innerException)
56                 {
57                 }
58
59                 public HttpCompileException (CompilerResults results, string sourceCode)
60                 {
61                         this.results = results;
62                         this.sourceCode = sourceCode;
63                 }
64
65
66                 public CompilerResults Results {
67                         [AspNetHostingPermission (SecurityAction.Demand, Level = AspNetHostingPermissionLevel.High)]
68                         get { return results; }
69                 }
70
71                 public string SourceCode {
72                         [AspNetHostingPermission (SecurityAction.Demand, Level = AspNetHostingPermissionLevel.High)]
73                         get { return sourceCode; }
74                 }
75
76                 public override string Message {
77                         get { return base.Message; }
78                 }
79
80                 [SecurityPermission (SecurityAction.Demand, SerializationFormatter = true)]
81                 public override void GetObjectData (SerializationInfo info, StreamingContext context)
82                 {
83                         base.GetObjectData (info, context);
84                         sourceCode = info.GetString ("sourcecode");
85                         results = (CompilerResults) info.GetValue ("results", typeof (CompilerResults));
86                 }
87         }
88 }