32 lines
763 B
Java
32 lines
763 B
Java
// exceptions/Human.java
|
|
// (c)2020 MindView LLC: see Copyright.txt
|
|
// We make no guarantees that this code is fit for any purpose.
|
|
// Visit http://OnJava8.com for more book information.
|
|
// Catching exception hierarchies
|
|
|
|
class Annoyance extends Exception {}
|
|
class Sneeze extends Annoyance {}
|
|
|
|
public class Human {
|
|
public static void main(String[] args) {
|
|
// Catch the exact type:
|
|
try {
|
|
throw new Sneeze();
|
|
} catch(Sneeze s) {
|
|
System.out.println("Caught Sneeze");
|
|
} catch(Annoyance a) {
|
|
System.out.println("Caught Annoyance");
|
|
}
|
|
// Catch the base type:
|
|
try {
|
|
throw new Sneeze();
|
|
} catch(Annoyance a) {
|
|
System.out.println("Caught Annoyance");
|
|
}
|
|
}
|
|
}
|
|
/* Output:
|
|
Caught Sneeze
|
|
Caught Annoyance
|
|
*/
|