Packagecom.ericfeminella.errors
Classpublic class AbstractException
InheritanceAbstractException Inheritance Error
SubclassesNullPointerException

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);
            }
     }
     



Public Methods
 MethodDefined by
  
AbstractException(message:String, ... args)
Constructor
AbstractException
Constructor detail
AbstractException()constructor
public function AbstractException(message:String, ... args)

Constructor

Parameters
message:String — message String associated with the error
 
... args — to replace tokens in error message