| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- //
- // System.Web.Compilation.CompilationException
- //
- // Authors:
- // Gonzalo Paniagua Javier ([email protected])
- //
- // (C) 2002 Ximian, Inc (http://www.ximian.com)
- //
- using System;
- namespace System.Web.Compilation
- {
- internal class CompilationException : Exception
- {
- CompilationResult result;
- public CompilationException (CompilationResult result)
- {
- this.result = result;
- }
- public CompilationException (string msg, CompilationResult result)
- {
- this.result = result;
- }
- public CompilationException (CompilationCacheItem item)
- {
- this.result = item.Result;
- }
- public override string Message {
- get {
- return result.ToString ();
- }
- }
- }
- }
|