Package com.jk.data.exceptions
Class JKDataAccessValidationException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com.jk.core.exceptions.JKException
com.jk.core.exceptions.JKDataAccessException
com.jk.data.exceptions.JKDataAccessValidationException
- All Implemented Interfaces:
Serializable
This class represents exceptions thrown to indicate that an error occurred
within the application.
This exception is a subclass of JKDataAccessException
.
- Version:
- 1.0
- Author:
- Dr. Jalal H. Kiswani
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionThis method constructs a newJKDataAccessValidationException
without any specified errors or causes.JKDataAccessValidationException
(String message) This method constructs aJKDataAccessValidationException
with a specific error message.JKDataAccessValidationException
(String message, Throwable cause) This method constructs aJKDataAccessValidationException
with a specific error message and a cause.This method constructs aJKDataAccessValidationException
with a cause. -
Method Summary
Methods inherited from class com.jk.core.exceptions.JKDataAccessException
add, isDuplicateKeyErrorCode, isInvalidDatabaseName, isInvalidUsernamePassword
Methods inherited from class com.jk.core.exceptions.JKException
isLogged, setLogged
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
JKDataAccessValidationException
public JKDataAccessValidationException()This method constructs a newJKDataAccessValidationException
without any specified errors or causes.This constructor is typically used when the exception is thrown to represent a specific error condition without additional details.
-
JKDataAccessValidationException
This method constructs aJKDataAccessValidationException
with a specific error message.- Parameters:
message
- Specifies the error message explaining the reason for this exception.
-
JKDataAccessValidationException
This method constructs aJKDataAccessValidationException
with a specific error message and a cause.- Parameters:
message
- Specifies the error message explaining the reason for this exception.cause
- Specifies the cause of this exception.
-
JKDataAccessValidationException
This method constructs aJKDataAccessValidationException
with a cause.- Parameters:
cause
- Specifies the cause of this exception.
-