Class JKDataAccessValidationException

All Implemented Interfaces:
Serializable

public class JKDataAccessValidationException 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

    • JKDataAccessValidationException

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

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

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

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