1 7 8 package java.lang; 9 10 20 public class Exception extends Throwable { 21 static final long serialVersionUID = -3387516993124229948L; 22 23 28 public Exception() { 29 super(); 30 } 31 32 40 public Exception(String message) { 41 super(message); 42 } 43 44 58 public Exception(String message, Throwable cause) { 59 super(message, cause); 60 } 61 62 76 public Exception(Throwable cause) { 77 super(cause); 78 } 79 } 80 | Popular Tags |