...
Code Block | ||
---|---|---|
| ||
import java.io.FileInputStream; import java.io.FileNotFoundException; class NewException extends Exception { //common exception for abstraction purposes public NewException() { super("Error!"); } } class ExceptionExample { public static void main(String[] args) throws NewException { try { FileInputStream dis = new FileInputStream("c:\\" + args[0]); } catch(FileNotFoundException fnf) { throw new NewException(); } //sanitized message } } |
...