Package org.eclipse.aether.deployment
Class DeploymentException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.eclipse.aether.RepositoryException
-
- org.eclipse.aether.deployment.DeploymentException
-
- All Implemented Interfaces:
Serializable
public class DeploymentException extends RepositoryException
Thrown in case of a deployment error like authentication failure.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description DeploymentException(String message)
Creates a new exception with the specified detail message.DeploymentException(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
getMessage
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
DeploymentException
public DeploymentException(String message)
Creates a new exception with the specified detail message.- Parameters:
message
- The detail message, may benull
.
-
DeploymentException
public DeploymentException(String message, 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
.
-
-