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