Class SSOAgentServerException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- javax.servlet.ServletException
-
- io.asgardeo.java.oidc.sdk.exception.SSOAgentException
-
- io.asgardeo.java.oidc.sdk.exception.SSOAgentServerException
-
- All Implemented Interfaces:
Serializable
public class SSOAgentServerException extends SSOAgentException
Server exception class for the Java OIDC SDK. It is extended from the base class,SSOAgentException.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description SSOAgentServerException(String message)Constructs a SSOAgentServerException with the specified detail message.SSOAgentServerException(String message, String errorCode)Creates aSSOAgentServerExceptionwith the specified detail message and cause.SSOAgentServerException(String message, String errorCode, Throwable cause)Creates aSSOAgentServerExceptionwith the specified detail message and cause.SSOAgentServerException(String message, Throwable cause)Creates aSSOAgentServerExceptionwith the specified detail message and cause.
-
Method Summary
-
Methods inherited from class io.asgardeo.java.oidc.sdk.exception.SSOAgentException
getErrorCode
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
SSOAgentServerException
public SSOAgentServerException(String message)
Constructs a SSOAgentServerException with the specified detail message. A detail message is a String that describes this particular exception.- Parameters:
message- The detail message.
-
SSOAgentServerException
public SSOAgentServerException(String message, String errorCode, Throwable cause)
Creates aSSOAgentServerExceptionwith the specified detail message and cause.- Parameters:
message- the detail message (which is saved for later retrieval by theThrowable.getMessage()method).errorCode- The error code (which is saved for later retrieval by theSSOAgentException.getErrorCode()method).cause- the cause (which is saved for later retrieval by theThrowable.getCause()method).
-
SSOAgentServerException
public SSOAgentServerException(String message, Throwable cause)
Creates aSSOAgentServerExceptionwith the specified detail message and cause.- Parameters:
message- The detail message (which is saved for later retrieval by theThrowable.getMessage()method).cause- The cause (which is saved for later retrieval by theThrowable.getCause()method).
-
SSOAgentServerException
public SSOAgentServerException(String message, String errorCode)
Creates aSSOAgentServerExceptionwith the specified detail message and cause.- Parameters:
message- the detail message (which is saved for later retrieval by theThrowable.getMessage()method).errorCode- The error code (which is saved for later retrieval by theSSOAgentException.getErrorCode()method).
-
-