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

org.jbpm.sim.exception.ExperimentConfigurationException Maven / Gradle / Ivy

There is a newer version: 3.2.19.ayg
Show newest version
package org.jbpm.sim.exception;

/**
 * This Exception is thrown, if something with the simulation experiment
 * configuration is invalid.
 * 
 * @author [email protected]
 */
public class ExperimentConfigurationException extends RuntimeException {

  private static final long serialVersionUID = 2843165686280916208L;

  public ExperimentConfigurationException() {
    super();
  }

  public ExperimentConfigurationException(String arg0, Throwable arg1) {
    super(arg0, arg1);
  }

  public ExperimentConfigurationException(String arg0) {
    super(arg0);
  }

  public ExperimentConfigurationException(Throwable arg0) {
    super(arg0);
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy