Package org.sim0mq
Class Sim0MQException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.sim0mq.Sim0MQException
- All Implemented Interfaces:
Serializable
Exception for the DSOL ZeroMQ bridge.
Copyright (c) 2016-2024 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved.
BSD-style license. See Sim0MQ License.
- Author:
- Alexander Verbraeck
- See Also:
-
Constructor Summary
ConstructorDescriptionCreate a ZeroMQ Exception.Sim0MQException
(String message) Create a ZeroMQ Exception.Sim0MQException
(String message, Throwable cause) Create a ZeroMQ Exception.Sim0MQException
(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) Create a ZeroMQ Exception.Sim0MQException
(Throwable cause) Create a ZeroMQ Exception. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
Sim0MQException
public Sim0MQException()Create a ZeroMQ Exception. -
Sim0MQException
Create a ZeroMQ Exception.- Parameters:
message
- the message
-
Sim0MQException
Create a ZeroMQ Exception.- Parameters:
cause
- the exception that caused the ZeroMQ exception
-
Sim0MQException
Create a ZeroMQ Exception.- Parameters:
message
- the messagecause
- the exception that caused the ZeroMQ exception
-
Sim0MQException
public Sim0MQException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) Create a ZeroMQ Exception.- Parameters:
message
- the messagecause
- the exception that caused the ZeroMQ exceptionenableSuppression
- to enable suppressions or notwritableStackTrace
- to have a writable stack trace or not
-