Class ReportException

  • All Implemented Interfaces:
    java.io.Serializable

    @ThreadSafe
    public class ReportException
    extends java.lang.Exception
    An exception used when generating reports.
    Author:
    Jeremy Long
    See Also:
    Serialized Form
    • Constructor Summary

      Constructors 
      Constructor Description
      ReportException()
      Creates a new ReportException.
      ReportException​(java.lang.String msg)
      Creates a new ReportException.
      ReportException​(java.lang.String msg, java.lang.Throwable ex)
      Creates a new ReportException.
      ReportException​(java.lang.Throwable ex)
      Creates a new ReportException.
    • 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()
        Creates a new ReportException.
      • ReportException

        public ReportException​(java.lang.String msg)
        Creates a new ReportException.
        Parameters:
        msg - a message for the exception.
      • ReportException

        public ReportException​(java.lang.Throwable ex)
        Creates a new ReportException.
        Parameters:
        ex - the cause of the exception.
      • ReportException

        public ReportException​(java.lang.String msg,
                               java.lang.Throwable ex)
        Creates a new ReportException.
        Parameters:
        msg - a message for the exception.
        ex - the cause of the exception.