Package org.apache.ignite
Class IgniteDeploymentException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.apache.ignite.IgniteException
-
- org.apache.ignite.IgniteDeploymentException
-
- All Implemented Interfaces:
Serializable
public class IgniteDeploymentException extends IgniteException
Deployment or re-deployment failed.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description IgniteDeploymentException(String msg)
Creates new exception with given error message.IgniteDeploymentException(String msg, @Nullable Throwable cause)
Creates a new exception with given error message and optional nested cause exception.IgniteDeploymentException(Throwable cause)
Creates new exception with given throwable as a nested cause and source of error message.
-
Method Summary
-
Methods inherited from class org.apache.ignite.IgniteException
getCause, hasCause, toString
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace
-
-
-
-
Constructor Detail
-
IgniteDeploymentException
public IgniteDeploymentException(String msg)
Creates new exception with given error message.- Parameters:
msg
- Error message.
-
IgniteDeploymentException
public IgniteDeploymentException(Throwable cause)
Creates new exception with given throwable as a nested cause and source of error message.- Parameters:
cause
- Non-null throwable cause.
-
-