Package com.jk.data.dynamic.paging
Class PagingException
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.dynamic.paging.PagingException
- All Implemented Interfaces:
Serializable
This class represents exceptions thrown to indicate that a paging 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 newPagingException
without any specified errors or causes.PagingException
(String message) This method constructs aPagingException
with a specific error message.PagingException
(String message, Throwable cause) This method constructs aPagingException
with a specific error message and a cause.PagingException
(Throwable cause) This method constructs aPagingException
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
-
PagingException
public PagingException()This method constructs a newPagingException
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.
-
PagingException
This method constructs aPagingException
with a specific error message.- Parameters:
message
- Specifies the error message explaining the reason for this exception.
-
PagingException
This method constructs aPagingException
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.
-
PagingException
This method constructs aPagingException
with a cause.- Parameters:
cause
- Specifies the cause of this exception.
-