Class IdAuthRetryException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- io.mosip.kernel.core.exception.BaseUncheckedException
-
- io.mosip.authentication.core.exception.IdAuthRetryException
-
- All Implemented Interfaces:
Serializable
public class IdAuthRetryException extends io.mosip.kernel.core.exception.BaseUncheckedExceptionThe Class IdAuthRetryException - Unchecked exception used to trigger retry in RestHelper.- Author:
- Manoj SP
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description IdAuthRetryException()Instantiates a new id auth retry exception.IdAuthRetryException(IdAuthenticationErrorConstants exceptionConstant)Instantiates a new id auth retry exception.IdAuthRetryException(IdAuthenticationErrorConstants exceptionConstant, Throwable rootCause)Instantiates a new id auth retry exception.IdAuthRetryException(io.mosip.kernel.core.exception.BaseCheckedException rootCause)Instantiates a new id auth retry exception.IdAuthRetryException(io.mosip.kernel.core.exception.BaseUncheckedException rootCause)Instantiates a new id auth retry exception.IdAuthRetryException(String errorCode, String errorMessage)Instantiates a new id auth retry exception.IdAuthRetryException(String errorCode, String errorMessage, Throwable rootCause)Instantiates a new id auth retry exception.
-
Method Summary
-
Methods inherited from class io.mosip.kernel.core.exception.BaseUncheckedException
addInfo, getCodes, getErrorCode, getErrorText, getErrorTexts, getMessage
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
IdAuthRetryException
public IdAuthRetryException()
Instantiates a new id auth retry exception.
-
IdAuthRetryException
public IdAuthRetryException(String errorCode, String errorMessage)
Instantiates a new id auth retry exception.- Parameters:
errorCode- the error codeerrorMessage- the error message
-
IdAuthRetryException
public IdAuthRetryException(String errorCode, String errorMessage, Throwable rootCause)
Instantiates a new id auth retry exception.- Parameters:
errorCode- the error codeerrorMessage- the error messagerootCause- the root cause
-
IdAuthRetryException
public IdAuthRetryException(IdAuthenticationErrorConstants exceptionConstant)
Instantiates a new id auth retry exception.- Parameters:
exceptionConstant- the exception constant
-
IdAuthRetryException
public IdAuthRetryException(IdAuthenticationErrorConstants exceptionConstant, Throwable rootCause)
Instantiates a new id auth retry exception.- Parameters:
exceptionConstant- the exception constantrootCause- the root cause
-
IdAuthRetryException
public IdAuthRetryException(io.mosip.kernel.core.exception.BaseCheckedException rootCause)
Instantiates a new id auth retry exception.- Parameters:
rootCause- the root cause
-
IdAuthRetryException
public IdAuthRetryException(io.mosip.kernel.core.exception.BaseUncheckedException rootCause)
Instantiates a new id auth retry exception.- Parameters:
rootCause- the root cause
-
-