com.hp.lft.report

Class ReportException

  • java.lang.Object
    • java.lang.Throwable
      • java.lang.Exception
        • com.hp.lft.report.ReportException
  • All Implemented Interfaces:
    java.io.Serializable


    public class ReportException
    extends java.lang.Exception
    The exceptions thrown when errors occur in Reporter objects.
    See Also:
    Serialized Form
    • Constructor Summary

      Constructor and Description
      ReportException()
      Initializes a new instance of ReportException with a default message.
      ReportException(java.lang.String message)
      Initializes a new instance of ReportException with the specified error message.
      ReportException(java.lang.String message, java.lang.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 Summary

      • Methods inherited from class java.lang.Throwable

        addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • ReportException

        public ReportException()
        Initializes a new instance of ReportException with a default message.
      • ReportException

        public ReportException(java.lang.String message,
                               java.lang.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.
        Parameters:
        message: - The error message with the reason for this exception.
        exception: - The inner exception that caused this exception.
      • ReportException

        public ReportException(java.lang.String message)
        Initializes a new instance of ReportException with the specified error message.
        Parameters:
        message: - The error message with the reason for this exception.