1 25 package org.objectweb.jonas.security; 26 27 28 33 public class SecurityServiceException extends Exception { 34 35 38 public SecurityServiceException(String message) { 39 super(message); 40 } 41 42 45 public SecurityServiceException(Throwable cause) { 46 super(cause); 47 } 48 49 53 public SecurityServiceException(String message, Throwable cause) { 54 super(message, cause); 55 } 56 57 } 58 | Popular Tags |