OnJava8-Examples/exceptions/InheritingExceptions.java
Bruce Eckel 49edcc8b17 reorg
2015-06-15 17:47:35 -07:00

24 lines
606 B
Java

//: exceptions/InheritingExceptions.java
// ©2015 MindView LLC: see Copyright.txt
// Creating your own exceptions.
class SimpleException extends Exception {}
public class InheritingExceptions {
public void f() throws SimpleException {
System.out.println("Throw SimpleException from f()");
throw new SimpleException();
}
public static void main(String[] args) {
InheritingExceptions sed = new InheritingExceptions();
try {
sed.f();
} catch(SimpleException e) {
System.out.println("Caught it!");
}
}
} /* Output:
Throw SimpleException from f()
Caught it!
*///:~