You can extend one of the standard Error classes to create your own specialized error classes in ActionScript. There are a number of reasons to create your own error classes:
For example, you may want to take different actions for errors thrown by your own code, in addition to those trapped by Flash Player or Adobe AIR. You can create a subclass of the Error class to track the new error data type in try..catch blocks.
For example, you can create a new toString() method that formats your error messages in a certain way. You can also define a lookupErrorString() method that takes an error code and retrieves the proper message based on the user's language preference.
A specialized error class must extend the core ActionScript Error class. Here is an example of a specialized AppError class that extends the Error class:
public class AppError extends Error
{
public function AppError(message:String, errorID:int)
{
super(message, errorID);
}
}
The following shows an example of using AppError in your project:
try
{
throw new AppError("Encountered Custom AppError", 29);
}
catch (error:AppError)
{
trace(error.errorID + ": " + error.message)
}