Package com.sun.xml.wss.saml
Class SAMLException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com.sun.xml.wss.saml.SAMLException
-
- All Implemented Interfaces:
Serializable
public class SAMLException extends Exception
This class is an extension point for all SAML related exceptions.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description SAMLException()
Create anSAMLException
with no message.SAMLException(String s)
Create anSAMLException
with a message.SAMLException(Throwable e)
Create anSAMLException
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
SAMLException
public SAMLException()
Create anSAMLException
with no message.
-
SAMLException
public SAMLException(String s)
Create anSAMLException
with a message.- Parameters:
s
- exception message.
-
SAMLException
public SAMLException(Throwable e)
Create anSAMLException
- Parameters:
e
- the cause
-
-