try {
isThisGoingToWork(myLife);
}
catch (UnexpectedEndException){
// This can happen so i don't care
}
catch (OtherException e){
// This can't happen so i don't care
}
finally{
/** @todo Under construction (no idea yet ) */
}
try {
isThisGoingToWork(myLife);
}
catch (UnexpectedEndException){
// This can happen so i don't care
}
catch (OtherException e){
// This can't happen so i don't care
}
finally{
/** @todo Under construction (no idea yet ) */
}