1 19 package org.netbeans.test.exceptions; 20 21 27 public class Exception2 extends RuntimeException { 28 29 32 public Exception2() { 33 super(); 34 } 36 37 40 public Exception2(String message) { 41 super(message); 42 } 44 45 49 public Exception2(String message, Throwable cause) { 50 super(message, cause); 51 } 53 54 57 public Exception2(Throwable cause) { 58 super(cause); 59 } 61 62 } 63 | Popular Tags |