package nl.tudelft.simulation.zmq; /** * Exception for the DSOL ZeroMQ bridge. *
* Copyright (c) 2002-2021 Delft University of Technology, Jaffalaan 5, 2628 BX Delft, the Netherlands. All rights reserved. See * for project information https://simulation.tudelft.nl. The DSOL * project is distributed under a three-clause BSD-style license, which can be found at * * https://simulation.tudelft.nl/dsol/3.0/license.html. *
* @author Peter Jacobs * @author Alexander Verbraeck */ public class ZeroMQException extends Exception { /** */ private static final long serialVersionUID = 30100L; /** * Create a ZeroMQ Exception. */ public ZeroMQException() { super(); } /** * Create a ZeroMQ Exception. * @param message String; the message */ public ZeroMQException(final String message) { super(message); } /** * Create a ZeroMQ Exception. * @param cause Throwable; the exception that caused the ZeroMQ exception */ public ZeroMQException(final Throwable cause) { super(cause); } /** * Create a ZeroMQ Exception. * @param message String; the message * @param cause Throwable; the exception that caused the ZeroMQ exception */ public ZeroMQException(final String message, final Throwable cause) { super(message, cause); } /** * Create a ZeroMQ Exception. * @param message String; the message * @param cause Throwable; the exception that caused the ZeroMQ exception * @param enableSuppression boolean; to enable suppressions or not * @param writableStackTrace boolean; 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); } }