Class PagingException

All Implemented Interfaces:
Serializable

public class PagingException extends JKDataAccessException
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 Details

    • PagingException

      public PagingException()
      This method constructs a new PagingException 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

      public PagingException(String message)
      This method constructs a PagingException with a specific error message.
      Parameters:
      message - Specifies the error message explaining the reason for this exception.
    • PagingException

      public PagingException(String message, Throwable cause)
      This method constructs a PagingException 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

      public PagingException(Throwable cause)
      This method constructs a PagingException with a cause.
      Parameters:
      cause - Specifies the cause of this exception.