Statement Flash ActionScript

/*
try {
  // Code to try.
}
finally {
  // Code to run regardless.
}
//Or, you can use try, catch, and finally:
try {
  // Code to try.
}
catch (erObject:Error) {
  // Code to run if the try code throws an error.
}
finally {
  // Code to run regardless.
}
*/