Package com.jk.core.exceptions
Class JKEmptyReportException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com.jk.core.exceptions.JKException
com.jk.core.exceptions.JKReportException
com.jk.core.exceptions.JKEmptyReportException
- All Implemented Interfaces:
Serializable
This class represents exception thrown to indicate that a report is empty or
contains no data.
This exception is a subclass of JKReportException
.
This class should be used to represent situations where a generated report is found to be empty or devoid of any meaningful data.
- Version:
- 1.0
- Author:
- Dr. Jalal H. Kiswani
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionThis method constructs a newJKEmptyReportException
without any specified errors or causes.JKEmptyReportException
(String message) This method constructs aJKEmptyReportException
with a specific error message.JKEmptyReportException
(String message, Throwable cause) This method constructs aJKEmptyReportException
with a specific error message and a cause.JKEmptyReportException
(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) This method constructs aJKEmptyReportException
with a specific error message, cause, suppression behavior, and stack trace writability.JKEmptyReportException
(Throwable cause) This method constructs aJKEmptyReportException
with a cause. -
Method Summary
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
-
JKEmptyReportException
public JKEmptyReportException()This method constructs a newJKEmptyReportException
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.
-
JKEmptyReportException
public JKEmptyReportException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) This method constructs aJKEmptyReportException
with a specific error message, cause, suppression behavior, and stack trace writability.- Parameters:
message
- Specifies the error message explaining the empty report situation.cause
- Specifies the cause of this exception.enableSuppression
- Specifies whether suppression is enabled or disabled.writableStackTrace
- Specifies whether the stack trace should be writable.
-
JKEmptyReportException
This method constructs aJKEmptyReportException
with a specific error message and a cause.- Parameters:
message
- Specifies the error message explaining the empty report situation.cause
- Specifies the cause of this exception.
-
JKEmptyReportException
This method constructs aJKEmptyReportException
with a specific error message.- Parameters:
message
- Specifies the error message explaining the empty report situation.
-
JKEmptyReportException
This method constructs aJKEmptyReportException
with a cause.- Parameters:
cause
- Specifies the cause of this exception.
-