Package org.djutils.data.serialization
Class TextSerializationException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.djutils.data.serialization.TextSerializationException
- All Implemented Interfaces:
Serializable
public class TextSerializationException extends Exception
TextSerializationException is the exception thrown on errors when (de)serializing objects.
Copyright (c) 2020-2020 Delft University of Technology, Jaffalaan 5, 2628 BX Delft, the Netherlands. All rights reserved. See for project information https://djutils.org. The DJUTILS project is distributed under a three-clause BSD-style license, which can be found at https://djutils.org/docs/license.html.
Copyright (c) 2020-2020 Delft University of Technology, Jaffalaan 5, 2628 BX Delft, the Netherlands. All rights reserved. See for project information https://djutils.org. The DJUTILS project is distributed under a three-clause BSD-style license, which can be found at https://djutils.org/docs/license.html.
- Author:
- Alexander Verbraeck, Peter Knoppers, Wouter Schakel
- See Also:
- Serialized Form
-
Constructor Summary
Constructors Constructor Description TextSerializationException()
Constructor for TextSerializationException.TextSerializationException(String message)
Constructor for TextSerializationException.TextSerializationException(String message, Throwable cause)
Constructor for TextSerializationException.TextSerializationException(Throwable cause)
Constructor for TextSerializationException. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
TextSerializationException
public TextSerializationException()Constructor for TextSerializationException. -
TextSerializationException
Constructor for TextSerializationException.- Parameters:
message
- String; explanation of the exceptioncause
- Throwable; underlying exception
-
TextSerializationException
Constructor for TextSerializationException.- Parameters:
message
- String; explanation of the exception
-
TextSerializationException
Constructor for TextSerializationException.- Parameters:
cause
- Throwable; underlying exception
-