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-2024 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:
  • Constructor Details

    • 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 message
      cause - 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 message
      cause - Throwable; the exception that caused the serialization exception
      enableSuppression - boolean; to enable suppressions or not
      writableStackTrace - boolean; to have a writable stack trace or not