Package org.codehaus.mojo.license.api
Class ThirdPartyToolException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.codehaus.mojo.license.api.ThirdPartyToolException
- All Implemented Interfaces:
Serializable
An exception occurring during the execution of this tool.
- Version:
- $Id$
- Author:
- tony chemit
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionThirdPartyToolException
(String message) Construct a newThirdPartyToolException
exception providing amessage
.ThirdPartyToolException
(String message, Exception cause) Construct a newThirdPartyToolException
exception wrapping an underlyingException
and providing amessage
.ThirdPartyToolException
(String message, Throwable cause) Construct a newThirdPartyToolException
exception wrapping an underlyingThrowable
and providing amessage
. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
ThirdPartyToolException
Construct a newThirdPartyToolException
exception wrapping an underlyingException
and providing amessage
.- Parameters:
message
- could be nullcause
- could be null
-
ThirdPartyToolException
Construct a newThirdPartyToolException
exception wrapping an underlyingThrowable
and providing amessage
.- Parameters:
message
- could be nullcause
- could be null
-
ThirdPartyToolException
Construct a newThirdPartyToolException
exception providing amessage
.- Parameters:
message
- could be null
-