Package org.codelibs.fess.exception
Class SsoProcessException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.codelibs.fess.exception.FessSystemException
org.codelibs.fess.exception.SsoProcessException
- All Implemented Interfaces:
Serializable
Exception thrown during SSO (Single Sign-On) processing operations.
This exception is used to indicate errors that occur during the execution
of SSO authentication and authorization processes. It extends FessSystemException
to provide consistent error handling within the Fess system for SSO-related
processing failures such as token validation errors, communication failures
with SSO providers, or configuration issues.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionSsoProcessException(String message) Constructs a new SSO process exception with the specified detailed message.SsoProcessException(String message, Throwable cause) Constructs a new SSO process exception with the specified detailed 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
-
SsoProcessException
Constructs a new SSO process exception with the specified detailed message.- Parameters:
message- The detailed error message explaining the cause of the exception
-
SsoProcessException
Constructs a new SSO process exception with the specified detailed message and cause.- Parameters:
message- The detailed error message explaining the cause of the exceptioncause- The underlying exception that caused this SSO process exception
-