Class AttributesValidationException
java.lang.Object
java.lang.Throwable
java.lang.Exception
se.swedenconnect.opensaml.sweid.saml2.attribute.AttributesValidationException
- All Implemented Interfaces:
Serializable
Exception class that is used to indicate validation errors for attributes.
- Author:
- Martin Lindström (martin@idsec.se)
- See Also:
-
Constructor Summary
ConstructorDescriptionAttributesValidationException
(String message) Constructor assigning an error message.AttributesValidationException
(String message, Throwable cause) Constructor assigning an error message and the underlying cause of the error. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
AttributesValidationException
Constructor assigning an error message.- Parameters:
message
- the error message.
-
AttributesValidationException
Constructor assigning an error message and the underlying cause of the error.- Parameters:
message
- the error message.cause
- the underlying cause of the error.
-