Absolute Beginner's Guide to Java Programming

Absolute Beginner's Guide to Java Programming
ISBN-10
1105390411
ISBN-13
9781105390418
Pages
82
Language
English
Publisher
Iducate Learning

Description

try{ throw new NullPointerException("This will be caught below"); } catch(Exception e){ // NullPointerException is subclass of the Exception class. } There can be more than one catch-block for a try-block. The catching blocks evaluated ...