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
public class WSTrustException extends GeneralSecurityException
Exception used to convey that an error has happened when handling a WS-Trust request message.
- Author:
- Stefan Guilhen
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description WSTrustException(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.WSTrustException(Throwable t)
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 Detail
-
WSTrustException
public WSTrustException(String message)
Creates an instance of
WSTrustException
using the specified error message.- Parameters:
message
- the error message.
-
WSTrustException
public WSTrustException(String message, Throwable cause)
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.
-
-