Class SAMLException

    • Field Summary

      Fields 
      Modifier and Type Field Description
      private static long serialVersionUID  
    • Constructor Summary

      Constructors 
      Constructor Description
      SAMLException​(java.lang.String message)
      Construct a SAMLException with the provided error message.
      SAMLException​(java.lang.String message, java.lang.Throwable cause)
      Construct a SAMLException with the provided human-readable error message and upstream cause.
      SAMLException​(java.lang.Throwable cause)
      Construct a SAMLException with the provided cause for the exception.
    • Method Summary

      • Methods inherited from class java.lang.Throwable

        addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • SAMLException

        public SAMLException​(java.lang.String message)
        Construct a SAMLException with the provided error message.
        Parameters:
        message - The human-readable error message associated with this exception.
      • SAMLException

        public SAMLException​(java.lang.Throwable cause)
        Construct a SAMLException with the provided cause for the exception.
        Parameters:
        cause - The upstream cause of this exception.
      • SAMLException

        public SAMLException​(java.lang.String message,
                             java.lang.Throwable cause)
        Construct a SAMLException with the provided human-readable error message and upstream cause.
        Parameters:
        message - The human-readable error message associated with this exception.
        cause - The upstream cause associated with this exception.