package nl.tudelft.simulation.zmq; /** * Exception for the DSOL ZeroMQ bridge. *
* copyright (c) 2002-2018 Delft University of Technology.
* BSD-style license. See DSOL License.
* @author Peter Jacobs
* @author Alexander Verbraeck
* @version Oct 21, 2016
*/
public class ZeroMQException extends Exception
{
/** */
private static final long serialVersionUID = 30100L;
/**
* Create a ZeroMQ Exception.
*/
public ZeroMQException()
{
super();
}
/**
* Create a ZeroMQ Exception.
* @param message the message
*/
public ZeroMQException(final String message)
{
super(message);
}
/**
* Create a ZeroMQ Exception.
* @param cause the exception that caused the ZeroMQ exception
*/
public ZeroMQException(final Throwable cause)
{
super(cause);
}
/**
* Create a ZeroMQ Exception.
* @param message the message
* @param cause the exception that caused the ZeroMQ exception
*/
public ZeroMQException(final String message, final Throwable cause)
{
super(message, cause);
}
/**
* Create a ZeroMQ Exception.
* @param message the message
* @param cause the exception that caused the ZeroMQ exception
* @param enableSuppression to enable suppressions or not
* @param writableStackTrace to have a writable stack trace or not
*/
public ZeroMQException(final String message, final Throwable cause, final boolean enableSuppression,
final boolean writableStackTrace)
{
super(message, cause, enableSuppression, writableStackTrace);
}
}