home *** CD-ROM | disk | FTP | other *** search
Java Source | 1995-12-31 | 343 b | 23 lines |
-
- /* Throwing things */
- class baseball extends Throwable {
- int speed;
- }
-
-
- class throwab {
-
- public static void main(String args[]) throws baseball {
-
- try {
- throw new baseball();
- } catch (ArithmeticException e) {
- System.out.println("Arithmetic");
- }
- finally { System.out.println("Try is done");
- }
-
-
- }
- }
-