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

rinde.sim.scenario.ConfigurationException Maven / Gradle / Ivy

There is a newer version: 4.4.6
Show newest version
package rinde.sim.scenario;

/**
 * Configuration exception. Used to signal problems with setting up an
 * experiment (via {@link ScenarioController})
 * @author Bartosz Michalik 
 * @since 2.0
 */
public class ConfigurationException extends Exception {

  private static final long serialVersionUID = -7811526104730249976L;

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

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy