org.apache.maven.wagon
public abstract class WagonException extends Exception
Version: $Id: WagonException.java 162476 2005-04-19 02:49:45Z brett $
Field Summary | |
---|---|
Throwable | cause
the throwable that caused this throwable to get thrown |
Constructor Summary | |
---|---|
WagonException(String message, Throwable cause)
Constructs a new WagonException with the specified detail message.
| |
WagonException(String message)
Constructs a new WagonException with the specified detail message and cause.
|
Method Summary | |
---|---|
Throwable | getCause()
Returns the cause of this throwable or null if the cause is nonexistent or unknown.
|
Throwable | initCause(Throwable cause)
Initializes the cause of this throwable to the specified value.
|
Parameters: message - the detail message (which is saved for later retrieval by the getMessage() method). cause - the cause (which is saved for later retrieval by the getCause() method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)
Parameters: message - the detail message (which is saved for later retrieval by the getMessage() method).
Returns: the cause of this throwable or null if the cause is nonexistent or unknown.
Returns: a reference to this Throwable instance.