If I subclass Error class like this:
public class AppError extends Error
{
    public function AppError(message:String, errorID:int)
    {
        super(message, errorID);
    }
}
do I need to do anything else to get all errors into my custom error 
handler?

Thanks

Reply via email to