| java.lang.Object java.lang.Throwable java.lang.Exception javax.resource.ResourceException javax.resource.spi.SecurityException
SecurityException | public class SecurityException extends ResourceException (Code) | | A SecurityException indicates error conditions related to the security
contract between an application server and a resource adapter. Common types
of conditions represented by this exception include: invalid security
information - subject, failure to connect, failure to authenticate, access
control exception.
|
SecurityException | public SecurityException()(Code) | | Create an exception.
|
SecurityException | public SecurityException(String reason)(Code) | | Create an exception with a reason.
|
SecurityException | public SecurityException(String reason, String errorCode)(Code) | | Create an exception with a reason and an errorCode.
|
SecurityException | public SecurityException(String reason, Throwable cause)(Code) | | Create an exception with a reason and cause.
Parameters: reason - the reason Parameters: cause - the cause |
SecurityException | public SecurityException(Throwable cause)(Code) | | Create an exception with a cause.
Parameters: cause - the cause |
|
|