Week09 Exceptions
Week09 Exceptions
Java Exceptions
o On arithmetic or unsupported operations
o On file management operations
Throwables and making your own throwables
Notions
• Catching: try{
// the Throwable may be thrown and propagated from a line within this block
}catch(Throwable t){
// and this block executes if the Throwable was in fact thrown.
}
Task 0