Package org.eclipse.aether.installation
Class InstallationException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.eclipse.aether.RepositoryException
org.eclipse.aether.installation.InstallationException
- All Implemented Interfaces:
 Serializable
Thrown in case of an installation error like an IO error.
- See Also:
 
- 
Constructor Summary
ConstructorsConstructorDescriptionInstallationException(String message) Creates a new exception with the specified detail message.InstallationException(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
- 
InstallationException
Creates a new exception with the specified detail message.- Parameters:
 message- The detail message, may benull.
 - 
InstallationException
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.
 
 -