Class JKReportException

All Implemented Interfaces:
Serializable
Direct Known Subclasses:
JKEmptyReportException

public class JKReportException extends JKException
This class represents exception thrown to indicate errors related to generating or handling reports.

This exception is a subclass of JKException.

This class should be used to represent situations where data access there are issues with generating, formatting, or processing reports..

Version:
1.0
Author:
Dr. Jalal H. Kiswani
See Also:
  • Constructor Details

    • JKReportException

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

    • JKReportException

      public JKReportException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace)
      This method constructs a JKReportException with a specific error message, cause, suppression behavior, and stack trace writability.
      Parameters:
      message - Specifies the error message explaining the report-related issue.
      cause - Specifies the cause of this exception.
      enableSuppression - Specifies whether suppression is enabled or disabled.
      writableStackTrace - Specifies whether the stack trace should be writable.
    • JKReportException

      public JKReportException(String message, Throwable cause)
      This method constructs a JKReportException with a specific error message and a cause.
      Parameters:
      message - Specifies the error message explaining the report-related issue.
      cause - Specifies the cause of this exception.
    • JKReportException

      public JKReportException(String message)
      This method constructs a JKReportException with a specific error message.
      Parameters:
      message - Specifies the error message explaining the report-related issue.
    • JKReportException

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