/*try { // Code to try.}catch (erObject:Error) { // Code to run if the try code throws an error.}*/package{ import flash.display.Sprite; public class Main extends Sprite{ public function Main(){ var sUsername:String = ""; try { if(sUsername == "") { throw new Error(); } trace("The try block ran successfully."); } catch (erObject:Error) { trace("An error was thrown."); } } }}
Name (required)
email (will not be published) (required)
Website