All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.remondis.limbus.exceptions.NoSuchDeploymentException Maven / Gradle / Ivy

Go to download

This module only contains interfaces that are needed to develop plugins for the Limbus Engine.

There is a newer version: 3.1.0
Show newest version
package com.remondis.limbus.exceptions;

public class NoSuchDeploymentException extends Exception {

  /**
   *
   */
  private static final long serialVersionUID = 1L;

  public NoSuchDeploymentException() {
  }

  public NoSuchDeploymentException(String message) {
    super(message);
  }

  public NoSuchDeploymentException(Throwable cause) {
    super(cause);
  }

  public NoSuchDeploymentException(String message, Throwable cause) {
    super(message, cause);
  }

  public NoSuchDeploymentException(String message, Throwable cause, boolean enableSuppression,
      boolean writableStackTrace) {
    super(message, cause, enableSuppression, writableStackTrace);
  }

  /**
   * @return Returns a new {@link NoSuchDeploymentException} using a default message.
   */
  public static NoSuchDeploymentException createDefault() {
    return new NoSuchDeploymentException("The specified classpath is not deployed on this container.");
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy