Class ReportException

java.lang.Object
java.lang.Throwable
java.lang.Exception
org.owasp.dependencycheck.exception.ReportException
All Implemented Interfaces:
Serializable

@ThreadSafe public class ReportException extends Exception
An exception used when generating reports.
Author:
Jeremy Long
See Also:
  • Constructor Details

    • ReportException

      public ReportException()
      Creates a new ReportException.
    • ReportException

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

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

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