Package org.codelibs.fess.exception
Class SsoLoginException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.codelibs.fess.exception.FessSystemException
org.codelibs.fess.exception.SsoLoginException
- All Implemented Interfaces:
Serializable
Exception thrown when SSO (Single Sign-On) login operations fail.
This exception is used to indicate various SSO authentication failures
including configuration errors, authentication token validation failures,
communication issues with SSO providers, and other SSO-related problems.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionSsoLoginException(String message) Constructs a new SsoLoginException with the specified detail message.SsoLoginException(String message, Throwable cause) Constructs a new SsoLoginException with the specified detail message and cause. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
SsoLoginException
Constructs a new SsoLoginException with the specified detail message.- Parameters:
message- The detail message explaining the SSO login failure
-
SsoLoginException
Constructs a new SsoLoginException with the specified detail message and cause.- Parameters:
message- The detail message explaining the SSO login failurecause- The underlying exception that caused this SSO login failure
-