Class ComposerException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.owasp.dependencycheck.data.composer.ComposerException
- All Implemented Interfaces:
Serializable
Represents an exception when handling a composer.json or composer.lock file.
Generally used to wrap a downstream exception.
- Author:
- colezlaw
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionCreates a ComposerException with default message.ComposerException(String message) Creates a ComposerException with the specified message.ComposerException(String message, Throwable cause) Creates a Composer exception with the specified message and cause. -
Method Summary
Methods inherited from class Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
ComposerException
public ComposerException()Creates a ComposerException with default message. -
ComposerException
Creates a ComposerException with the specified message.- Parameters:
message- the exception message
-
ComposerException
-