Class WSTrustException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.security.GeneralSecurityException
org.keycloak.saml.common.exceptions.fed.WSTrustException
- All Implemented Interfaces:
Serializable
Exception used to convey that an error has happened when handling a WS-Trust request message.
- Author:
- Stefan Guilhen
- See Also:
-
Constructor Summary
ConstructorDescriptionWSTrustException
(String message) Creates an instance ofWSTrustException
using the specified error message.WSTrustException
(String message, Throwable cause) Creates an instance ofWSTrustException
using the specified error message and cause.Creates an instance ofWSTrustException
using the specifiedThrowable
. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
WSTrustException
Creates an instance of
WSTrustException
using the specified error message.- Parameters:
message
- the error message.
-
WSTrustException
Creates an instance of
WSTrustException
using the specified error message and cause.- Parameters:
message
- the error message.cause
- aThrowable
representing the cause of the error.
-
WSTrustException
Creates an instance of
WSTrustException
using the specifiedThrowable
.- Parameters:
message
- the error message.
-