AbstractException : public class
Created: 02/18/07 12:54:59
Modified: 02/18/07 12:54:59
Project:
Advanced:
Pseudo-abstract base class which provides an API allowing sub-classes to pass message containing tokens to be replaced with an arbitrary length of parameters 
<pre> 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); }
</pre>
Operation Details
public
AbstractException(
message: String,
args: rest,
):var
Sequential
Notes: Constructor <br />@param the message String associated with the error<br />@param arguments to replace tokens in error message
Object Type Connection Notes
UnsupportedObjectEncodingException Class Generalization