Class ServiceDeploymentException

    • Constructor Detail

      • ServiceDeploymentException

        public 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.
      • ServiceDeploymentException

        public ServiceDeploymentException​(Throwable cause,
                                          Collection<ServiceConfiguration> cfgs)
        Creates service deployment exception with Throwable as a cause.
        Parameters:
        cause - Cause.
        cfgs - Configurations of services that failed to deploy.
      • ServiceDeploymentException

        public ServiceDeploymentException​(String msg,
                                          @Nullable
                                          @Nullable Throwable cause,
                                          Collection<ServiceConfiguration> cfgs)
        Creates service deployment exception with error message and Throwable as a cause.
        Parameters:
        msg - Error message.
        cause - Cause.
        cfgs - Configurations of services that failed to deploy.
    • Method Detail

      • getFailedConfigurations

        public Collection<ServiceConfiguration> getFailedConfigurations()
        Returns:
        Configurations of services that failed to deploy.