ClassNotFoundError.as

Go to the documentation of this file.
00001 
00005 class gugga.logging.errors.ClassNotFoundError extends Error
00006 {
00007         public var name:String = "ClassNotFoundError";          
00008         public var message:String;
00009 
00010         public function ClassNotFoundError(className:String)
00011         {
00012                 super();
00013                 this.message = "Could not find class '" + className + "'";
00014         }
00015         
00016         public function toString():String
00017         {
00018                 return "[" + this.name + "] " + this.message;
00019         }
00020 }

Generated on Fri May 11 17:12:42 2007 for GuggaFramework by  doxygen 1.5.2