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:
java.io.Serializable
public class InstallationException extends RepositoryException
Thrown in case of an installation error like an IO error.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description InstallationException(java.lang.String message)
Creates a new exception with the specified detail message.InstallationException(java.lang.String message, java.lang.Throwable cause)
Creates a new exception with the specified detail message and cause.
-
Method Summary
-
Methods inherited from class org.eclipse.aether.RepositoryException
getMessage
-
-
-
-
Constructor Detail
-
InstallationException
public InstallationException(java.lang.String message)
Creates a new exception with the specified detail message.- Parameters:
message
- The detail message, may benull
.
-
InstallationException
public InstallationException(java.lang.String message, java.lang.Throwable cause)
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
.
-
-