
com.tacitknowledge.simulator.ConfigurableException Maven / Gradle / Ivy
The newest version!
package com.tacitknowledge.simulator;
/**
* @author galo
*/
@SuppressWarnings("serial")
public class ConfigurableException extends SimulatorException
{
/**
* Default constructor
* @param s String
*/
public ConfigurableException(final String s)
{
super(s);
}
/**
* Consrtuctor
* @param s a String
* @param throwable if something goes wrong
*/
public ConfigurableException(final String s, final Throwable throwable)
{
super(s, throwable);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy