Package com.hp.lft.report
Class ReportException
java.lang.Object
java.lang.Throwable
java.lang.Exception
com.hp.lft.report.ReportException
- All Implemented Interfaces:
- Serializable
The exceptions thrown when errors occur in Reporter objects.
- See Also:
- 
Constructor SummaryConstructorsConstructorDescriptionInitializes a new instance of ReportException with a default message.ReportException(String message) Initializes a new instance of ReportException with the specified error message.ReportException(String message, Throwable exception) Initializes a new instance of ReportException with the specified error message and a reference to the inner exception that is the cause of this exception.
- 
Method SummaryMethods inherited from class java.lang.ThrowableaddSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
- 
Constructor Details- 
ReportExceptionpublic ReportException()Initializes a new instance of ReportException with a default message.
- 
ReportExceptionInitializes a new instance of ReportException with the specified error message and a reference to the inner exception that is the cause of this exception.- Parameters:
- message- : The error message with the reason for this exception.
- exception- : The inner exception that caused this exception.
 
- 
ReportExceptionInitializes a new instance of ReportException with the specified error message.- Parameters:
- message- : The error message with the reason for this exception.
 
 
-