Class DataMapperException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- io.mosip.kernel.core.exception.BaseUncheckedException
-
- io.mosip.kernel.core.datamapper.exception.DataMapperException
-
- All Implemented Interfaces:
Serializable
public class DataMapperException extends BaseUncheckedException
Custom class for DataMapper Exception- Since:
- 1.0.0
- Author:
- Neha
- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class io.mosip.kernel.core.exception.BaseUncheckedException
EMPTY_SPACE
-
-
Constructor Summary
Constructors Constructor Description DataMapperException(String errorMessage)Constructor for DataMapperExceptionDataMapperException(String errorCode, String errorMessage)Constructor for DataMapperExceptionDataMapperException(String errorCode, String errorMessage, Throwable rootCause)Constructor for DataMapperException
-
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
-
DataMapperException
public DataMapperException(String errorCode, String errorMessage, Throwable rootCause)
Constructor for DataMapperException- Parameters:
errorCode- The error codeerrorMessage- The error messagerootCause- the specified cause
-
DataMapperException
public DataMapperException(String errorCode, String errorMessage)
Constructor for DataMapperException- Parameters:
errorCode- The error codeerrorMessage- The error message
-
DataMapperException
public DataMapperException(String errorMessage)
Constructor for DataMapperException- Parameters:
errorMessage- The error message
-
-