| A B C D E F G H I J K L M N O P Q R S T U V W X Y Z | |
| AbstractException — Class in package com.ericfeminella.errors | |
Pseudo-abstract base class which provides an API
allowing sub-classes to pass a message containing
tokens to be replaced with an arbitrary length of
parameters
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);
}
}
|
|
| AbstractException(message, ... rest) — Constructor in class com.ericfeminella.errors.AbstractException | |
| Constructor | |
| A B C D E F G H I J K L M N O P Q R S T U V W X Y Z | |