29 lines
602 B
Java
Raw Normal View History

2015-09-07 11:44:36 -06:00
// exceptions/Human.java
2015-06-15 17:47:35 -07:00
// 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");
}
}
2015-09-07 11:44:36 -06:00
}
/* Output:
2015-06-15 17:47:35 -07:00
Caught Sneeze
Caught Annoyance
2015-09-07 11:44:36 -06:00
*/