Package org.djutils.serialization
Class SerializationException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.djutils.serialization.SerializationException
-
- All Implemented Interfaces:
Serializable
public class SerializationException extends Exception
Exception for the DSOL ZeroMQ bridge.Copyright (c) 2019-2021 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved.
BSD-style license. See DJUTILS License.- Version:
- $Revision$, $LastChangedDate$, by $Author$,
- Author:
- Alexander Verbraeck, Peter Knoppers
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description SerializationException()
Create a serialization exception.SerializationException(String message)
Create a serialization exception.SerializationException(String message, Throwable cause)
Create a serialization exception.SerializationException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace)
Create a serialization exception.SerializationException(Throwable cause)
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 Detail
-
SerializationException
public SerializationException()
Create a serialization exception.
-
SerializationException
public SerializationException(String message)
Create a serialization exception.- Parameters:
message
- String; the message
-
SerializationException
public SerializationException(Throwable cause)
Create a serialization exception.- Parameters:
cause
- Throwable; the exception that caused the serialization exception
-
SerializationException
public SerializationException(String message, Throwable cause)
Create a serialization exception.- Parameters:
message
- String; the messagecause
- Throwable; the exception that caused the serialization exception
-
SerializationException
public SerializationException(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
-
-