Package org.apache.maven.doxia.tools
Class SiteToolException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.apache.maven.doxia.tools.SiteToolException
-
- All Implemented Interfaces:
Serializable
public class SiteToolException extends Exception
An exception occurring during the execution of this tool.- Version:
- $Id: SiteToolException.java 661727 2008-05-30 14:21:49Z bentmann $
- Author:
- Vincent Siveton
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description SiteToolException(String message)Construct a newSiteToolExceptionexception providing amessage.SiteToolException(String message, Exception cause)Construct a newSiteToolExceptionexception wrapping an underlyingExceptionand providing amessage.SiteToolException(String message, Throwable cause)Construct a newSiteToolExceptionexception wrapping an underlyingThrowableand 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 Detail
-
SiteToolException
public SiteToolException(String message, Exception cause)
Construct a newSiteToolExceptionexception wrapping an underlyingExceptionand providing amessage.- Parameters:
message- could be nullcause- could be null
-
SiteToolException
public SiteToolException(String message, Throwable cause)
Construct a newSiteToolExceptionexception wrapping an underlyingThrowableand providing amessage.- Parameters:
message- could be nullcause- could be null
-
SiteToolException
public SiteToolException(String message)
Construct a newSiteToolExceptionexception providing amessage.- Parameters:
message- could be null
-
-