| Package | com.ericfeminella.errors |
| Class | public class AbstractException |
| Inheritance | AbstractException Error |
| Subclasses | UnsupportedObjectEncodingException |
Below is an example of an AbstractException sub class
package
{
public class SimpleError extends AbstractException
{
public static const MESSAGE:String = "Error {0}";
public function SimpleError(detail:String){
super(SimpleError.MESSAGE, detail);
}
}
| Method | Defined by | ||
|---|---|---|---|
|
AbstractException(message:String, ... args)
Constructor
| AbstractException | ||