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); } } } }
Related Scripts with Example Source Code in same category :