Class JKRecordNotFoundException

All Implemented Interfaces:
Serializable

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

    • JKRecordNotFoundException

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

    • JKRecordNotFoundException

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

      public JKRecordNotFoundException(String str, Throwable cause)
      This method constructs a JKRecordNotFoundException with 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

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