Package org.apache.ignite.services
Class ServiceDeploymentException
- java.lang.Object
- 
- java.lang.Throwable
- 
- java.lang.Exception
- 
- java.lang.RuntimeException
- 
- org.apache.ignite.IgniteException
- 
- org.apache.ignite.services.ServiceDeploymentException
 
 
 
 
 
- 
- All Implemented Interfaces:
- Serializable
 
 public class ServiceDeploymentException extends IgniteException Exception indicating service deployment failure.- See Also:
- Serialized Form
 
- 
- 
Constructor SummaryConstructors Constructor Description ServiceDeploymentException(String msg, @Nullable Throwable cause, Collection<ServiceConfiguration> cfgs)Creates service deployment exception with error message andThrowableas a cause.ServiceDeploymentException(String msg, Collection<ServiceConfiguration> cfgs)Creates service deployment exception with error message.ServiceDeploymentException(Throwable cause, Collection<ServiceConfiguration> cfgs)Creates service deployment exception withThrowableas a cause.
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description Collection<ServiceConfiguration>getFailedConfigurations()- 
Methods inherited from class org.apache.ignite.IgniteExceptiongetCause, hasCause, toString
 - 
Methods inherited from class java.lang.ThrowableaddSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace
 
- 
 
- 
- 
- 
Constructor Detail- 
ServiceDeploymentExceptionpublic ServiceDeploymentException(String msg, Collection<ServiceConfiguration> cfgs) Creates service deployment exception with error message.- Parameters:
- msg- Error message.
- cfgs- Configurations of services that failed to deploy.
 
 - 
ServiceDeploymentExceptionpublic ServiceDeploymentException(Throwable cause, Collection<ServiceConfiguration> cfgs) Creates service deployment exception withThrowableas a cause.- Parameters:
- cause- Cause.
- cfgs- Configurations of services that failed to deploy.
 
 - 
ServiceDeploymentExceptionpublic ServiceDeploymentException(String msg, @Nullable @Nullable Throwable cause, Collection<ServiceConfiguration> cfgs) Creates service deployment exception with error message andThrowableas a cause.- Parameters:
- msg- Error message.
- cause- Cause.
- cfgs- Configurations of services that failed to deploy.
 
 
- 
 - 
Method Detail- 
getFailedConfigurationspublic Collection<ServiceConfiguration> getFailedConfigurations() - Returns:
- Configurations of services that failed to deploy.
 
 
- 
 
-