Mega Code Archive

 
Categories / Java / Language Basics
 

Ignoring RuntimeExceptions

// : c09:NeverCaught.java // Ignoring RuntimeExceptions. // {ThrowsException} // From 'Thinking in Java, 3rd ed.' (c) Bruce Eckel 2002 // www.BruceEckel.com. See copyright notice in CopyRight.txt. public class NeverCaught {   static void f() {     throw new RuntimeException("From f()");   }   static void g() {     f();   }   public static void main(String[] args) {     g();   } } ///:~