| Package | org.as3lib.errors |
| Class | public class AbstractError |
| Inheritance | AbstractError Error |
| Method | Defined by | ||
|---|---|---|---|
|
AbstractError(message:String = "", id:int = 0)
| AbstractError | ||
| Constant | Defined by | ||
|---|---|---|---|
| CONSTRUCTOR_ERROR : String = "ERROR: An abstract class may not be instantiated." [static]
Use this error in the constructor for your abstract class.
| AbstractError | ||
| METHOD_ERROR : String = "ERROR: Failed to implement an abstract method." [static]
Use this error in abstract methods that should be overridden in your abstract class.
| AbstractError | ||
| AbstractError | () | constructor |
public function AbstractError(message:String = "", id:int = 0)Parameters
message:String (default = "") |
|
id:int (default = 0) |
| CONSTRUCTOR_ERROR | constant |
public static const CONSTRUCTOR_ERROR:String = "ERROR: An abstract class may not be instantiated."Use this error in the constructor for your abstract class.
| METHOD_ERROR | constant |
public static const METHOD_ERROR:String = "ERROR: Failed to implement an abstract method."Use this error in abstract methods that should be overridden in your abstract class.