Class ReportException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.owasp.dependencycheck.exception.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.
-
-
-
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.
-
-