1 package org.enhydra.shark.api.internal.security; 2 3 import org.enhydra.shark.api.RootException; 4 5 12 public class SecurityException extends RootException { 13 14 19 public SecurityException(String message) { 20 super(message); 21 } 22 23 30 public SecurityException(Throwable cause) { 31 super(cause); 32 } 33 34 41 public SecurityException(String message, Throwable cause) { 42 super(message, cause); 43 } 44 } 45 46 | Popular Tags |