Handling Errors : Error : Development Flash / Flex / ActionScript examples


Flash / Flex / ActionScript examples » Development » Error »

 

Handling Errors


 

package{
  import flash.display.Sprite;
  
  public class Main extends Sprite{
    public function Main(){
        try {
          trace("This code is about to throw an error.");
          throw new Error("A general error occurred.");
          trace("This line won't run");
        }
        catch (errObject:Error) {
          trace("The catch block has been called.");
          trace("The message is: " + errObject.message);
        }
    }
  }
}

        



Leave a Comment / Note


 
Verification is used to prevent unwanted posts (spam). .


Flash / Flex / ActionScript examples

 Navioo Development
» Error