Package org.eclipse.aether.transfer
Class TransferCancelledException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.eclipse.aether.RepositoryException
org.eclipse.aether.transfer.TransferCancelledException
- All Implemented Interfaces:
 Serializable
Thrown in case an upload/download was cancelled (e.g. due to user request).
- See Also:
 
- 
Constructor Summary
ConstructorsConstructorDescriptionCreates a new exception with a stock detail message.TransferCancelledException(String message) Creates a new exception with the specified detail message.TransferCancelledException(String message, Throwable cause) Creates a new exception with the specified detail message and cause. - 
Method Summary
Methods inherited from class org.eclipse.aether.RepositoryException
getMessageMethods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString 
- 
Constructor Details
- 
TransferCancelledException
public TransferCancelledException()Creates a new exception with a stock detail message. - 
TransferCancelledException
Creates a new exception with the specified detail message.- Parameters:
 message- The detail message, may benull.
 - 
TransferCancelledException
Creates a new exception with the specified detail message and cause.- Parameters:
 message- The detail message, may benull.cause- The exception that caused this one, may benull.
 
 -