Package io.mosip.kernel.core.exception
Class NoSuchAlgorithmException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- io.mosip.kernel.core.exception.BaseUncheckedException
-
- io.mosip.kernel.core.exception.NoSuchAlgorithmException
-
- All Implemented Interfaces:
Serializable
public class NoSuchAlgorithmException extends BaseUncheckedException
Base class for all preconditions violation exceptions.- Since:
- 1.0.0
- Author:
- Urvil Joshi, Omsaieswar Mulakaluri
- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class io.mosip.kernel.core.exception.BaseUncheckedException
EMPTY_SPACE
-
-
Constructor Summary
Constructors Constructor Description NoSuchAlgorithmException(String errorCode, String errorMessage)Constructor with errorCode and errorMessageNoSuchAlgorithmException(String errorCode, String errorMessage, Throwable cause)Constructor with errorCode, errorMessage, and rootCause
-
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
-
NoSuchAlgorithmException
public NoSuchAlgorithmException(String errorCode, String errorMessage)
Constructor with errorCode and errorMessage- Parameters:
errorCode- The error code for this exceptionerrorMessage- The error message for this exception
-
NoSuchAlgorithmException
public NoSuchAlgorithmException(String errorCode, String errorMessage, Throwable cause)
Constructor with errorCode, errorMessage, and rootCause- Parameters:
errorCode- The error code for this exceptionerrorMessage- The error message for this exceptioncause- Cause of this exception
-
-