Class SSOAgentClientException
- 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.SSOAgentClientException
-
- All Implemented Interfaces:
Serializable
public class SSOAgentClientException extends SSOAgentException
Client exception class for the Java OIDC SDK. It is extended from the base class,SSOAgentException.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description SSOAgentClientException(String message)Constructs a SSOAgentClientException with the specified detail message.SSOAgentClientException(String message, String errorCode)Creates aSSOAgentClientExceptionwith the specified detail message and cause.SSOAgentClientException(String message, String errorCode, Throwable cause)Creates aSSOAgentClientExceptionwith the specified detail message and cause.SSOAgentClientException(String message, Throwable cause)Creates aSSOAgentClientExceptionwith 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
-
SSOAgentClientException
public SSOAgentClientException(String message)
Constructs a SSOAgentClientException with the specified detail message. A detail message is a String that describes this particular exception.- Parameters:
message- The detail message.
-
SSOAgentClientException
public SSOAgentClientException(String message, String errorCode, Throwable cause)
Creates aSSOAgentClientExceptionwith 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).
-
SSOAgentClientException
public SSOAgentClientException(String message, Throwable cause)
Creates aSSOAgentClientExceptionwith 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).
-
SSOAgentClientException
public SSOAgentClientException(String message, String errorCode)
Creates aSSOAgentClientExceptionwith 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).
-
-