Package com.jbstrap.core.dao.exception
Class SaveException
java.lang.Object
java.lang.Throwable
java.lang.Exception
com.jbstrap.core.dao.exception.SaveException
- All Implemented Interfaces:
Serializable
Data save exception
- Since:
- 4.0
- Author:
- JBStrap
- See Also:
-
Constructor Summary
ConstructorDescriptionSaveException
(String exceptionMessageKey, Object... args) Throws an exception, when an error is encountered during the save operation.SaveException
(String exceptionMessageKey, Throwable e, Object... args) Throws an exception, when an error is encountered during the save operation.Throws a save exception. -
Method Summary
Modifier and TypeMethodDescriptionGets the exception message source keyMethods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
SaveException
Throws a save exception. The stack trace is from the exception specified in the parameter.- Parameters:
e
- The original exception
-
SaveException
Throws an exception, when an error is encountered during the save operation. The error message based on the message parameters and message key.- Parameters:
exceptionMessageKey
- The exception message source keyargs
- Error message parameters (message source message arguments)
-
SaveException
Throws an exception, when an error is encountered during the save operation. The error message is created, based on the message parameters and the message key. The stack trace originates from the error that is specified in the parameter.- Parameters:
exceptionMessageKey
- The error message key, which is a message source keye
- The original exceptionargs
- Error message parameters (message source message arguments)
-
-
Method Details
-
getExceptionMessageKey
Gets the exception message source key- Returns:
- The exception message key
-