package nl.tudelft.simulation.dsol.interpreter; /** * An interpreterException. *
* (c) copyright 2002-2014 Delft University of Technology.
* BSD-style license. See DSOL License.
* @author Peter Jacobs
* @author Alexander Verbraeck
* @since 1.5
*/
public class InterpreterException extends RuntimeException
{
/** */
private static final long serialVersionUID = 20140830L;
/**
* constructs a new InterpreterException.
*/
public InterpreterException()
{
super();
}
/**
* constructs a new InterpreterException.
* @param message the message
*/
public InterpreterException(final String message)
{
super(message);
}
/**
* constructs a new InterpreterException.
* @param message the message
* @param cause the cause
*/
public InterpreterException(final String message, final Throwable cause)
{
super(message, cause);
}
/**
* constructs a new InterpreterException.
* @param cause the cause
*/
public InterpreterException(final Throwable cause)
{
super(cause);
}
}