Package org.djutils.serialization
Class SerializationRuntimeException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.djutils.serialization.SerializationRuntimeException
- All Implemented Interfaces:
Serializable
Exception for the DSOL ZeroMQ bridge.
Copyright (c) 2019-2024 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved.
BSD-style license. See DJUTILS License.
- Author:
- Alexander Verbraeck, Peter Knoppers
- See Also:
-
Constructor Summary
ConstructorDescriptionCreate a serialization exception.SerializationRuntimeException
(String message) Create a serialization exception.SerializationRuntimeException
(String message, Throwable cause) Create a serialization exception.SerializationRuntimeException
(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) Create a serialization exception.Create a serialization 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
-
SerializationRuntimeException
public SerializationRuntimeException()Create a serialization exception. -
SerializationRuntimeException
Create a serialization exception.- Parameters:
message
- String; the message
-
SerializationRuntimeException
Create a serialization exception.- Parameters:
cause
- Throwable; the exception that caused the serialization exception
-
SerializationRuntimeException
Create a serialization exception.- Parameters:
message
- String; the messagecause
- Throwable; the exception that caused the serialization exception
-
SerializationRuntimeException
public SerializationRuntimeException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) Create a serialization exception.- Parameters:
message
- String; the messagecause
- Throwable; the exception that caused the serialization exceptionenableSuppression
- boolean; to enable suppressions or notwritableStackTrace
- boolean; to have a writable stack trace or not
-