Package org.sim0mq
Class Sim0MQRuntimeException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.sim0mq.Sim0MQRuntimeException
- All Implemented Interfaces:
Serializable
Runtime 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.Sim0MQRuntimeException
(String message) Create a ZeroMQ Exception.Sim0MQRuntimeException
(String message, Throwable cause) Create a ZeroMQ Exception.Sim0MQRuntimeException
(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) Create a ZeroMQ Exception.Sim0MQRuntimeException
(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
-
Sim0MQRuntimeException
public Sim0MQRuntimeException()Create a ZeroMQ Exception. -
Sim0MQRuntimeException
Create a ZeroMQ Exception.- Parameters:
message
- the message
-
Sim0MQRuntimeException
Create a ZeroMQ Exception.- Parameters:
cause
- the exception that caused the ZeroMQ exception
-
Sim0MQRuntimeException
Create a ZeroMQ Exception.- Parameters:
message
- the messagecause
- the exception that caused the ZeroMQ exception
-
Sim0MQRuntimeException
public Sim0MQRuntimeException(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
-