java.io.SerializableAuthenticationException, AuthorizationException, CommandExecutionException, ConnectionException, ResourceDoesNotExistException, TransferFailedException, UnsupportedProtocolExceptionpublic abstract class WagonException
extends java.lang.Exception
| Constructor | Description |
|---|---|
WagonException(java.lang.String message) |
Constructs a new WagonException with the specified detail message and cause.
|
WagonException(java.lang.String message,
java.lang.Throwable cause) |
Constructs a new WagonException with the specified detail message.
|
| Modifier and Type | Method | Description |
|---|---|---|
java.lang.Throwable |
getCause() |
Returns the cause of this throwable or null if the cause is nonexistent or unknown.
|
java.lang.Throwable |
initCause(java.lang.Throwable cause) |
Initializes the cause of this throwable to the specified value.
|
public WagonException(java.lang.String message,
java.lang.Throwable cause)
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.)public WagonException(java.lang.String message)
message - - the detail message (which is saved for later retrieval by the getMessage() method).public java.lang.Throwable getCause()
getCause in class java.lang.Throwablepublic java.lang.Throwable initCause(java.lang.Throwable cause)
initCause in class java.lang.Throwable