1 7 package java.lang; 8 9 17 public class SecurityException extends RuntimeException { 18 19 private static final long serialVersionUID = 6878364983674394167L; 20 21 24 public SecurityException() { 25 super(); 26 } 27 28 34 public SecurityException(String s) { 35 super(s); 36 } 37 38 49 public SecurityException(String message, Throwable cause) { 50 super(message, cause); 51 } 52 53 64 public SecurityException(Throwable cause) { 65 super(cause); 66 } 67 } 68 | Popular Tags |