Package com.jk.data.exceptions
Class JKRecordNotFoundException
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.JKRecordNotFoundException
- 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 newJKRecordNotFoundExceptionwithout any specified errors or causes.This method constructs aJKRecordNotFoundExceptionwith a specific error message.JKRecordNotFoundException(String str, Throwable cause) This method constructs aJKRecordNotFoundExceptionwith a specific error message and a cause.This method constructs aJKRecordNotFoundExceptionwith a cause. - 
Method Summary
Methods inherited from class com.jk.core.exceptions.JKDataAccessException
add, isDuplicateKeyErrorCode, isInvalidDatabaseName, isInvalidUsernamePasswordMethods inherited from class com.jk.core.exceptions.JKException
isLogged, setLoggedMethods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString 
- 
Constructor Details
- 
JKRecordNotFoundException
public JKRecordNotFoundException()This method constructs a newJKRecordNotFoundExceptionwithout any specified errors or causes.This constructor is typically used when the exception is thrown to represent a specific error condition without additional details.
 - 
JKRecordNotFoundException
This method constructs aJKRecordNotFoundExceptionwith a specific error message.- Parameters:
 str- Specifies the error message explaining the reason for this exception.
 - 
JKRecordNotFoundException
This method constructs aJKRecordNotFoundExceptionwith a specific error message and a cause.- Parameters:
 str- Specifies the error message explaining the reason for this exception.cause- Specifies the cause of this exception.
 - 
JKRecordNotFoundException
This method constructs aJKRecordNotFoundExceptionwith a cause.- Parameters:
 e- Specifies the cause of this exception.
 
 -