Class NoSuchVersionException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- de.bsvrz.sys.funclib.dataSerializer.NoSuchVersionException
-
- All Implemented Interfaces:
java.io.Serializable
public final class NoSuchVersionException extends java.lang.Exception
Ausnahme, die beim Erzeugen von Serialisieren oder Deserialisierern erzeugt wird, um zu signalisieren, dass die gewünschte Version nicht verfügbar ist.
-
-
Constructor Summary
Constructors Constructor Description NoSuchVersionException()
Constructs a new exception withnull
as its detail message.NoSuchVersionException(java.lang.String message)
Constructs a new exception with the specified detail message.
-
Method Summary
Modifier and Type Method Description java.lang.String
toString()
Liefert eine textuelle Beschreibung dieses Objekts für Debug-Zwecke.
-
-
-
Constructor Detail
-
NoSuchVersionException
public NoSuchVersionException()
Constructs a new exception withnull
as its detail message. The cause is not initialized, and may subsequently be initialized by a call toThrowable.initCause(java.lang.Throwable)
.
-
NoSuchVersionException
public NoSuchVersionException(java.lang.String message)
Constructs a new exception with the specified detail message. The cause is not initialized, and may subsequently be initialized by a call toThrowable.initCause(java.lang.Throwable)
.- Parameters:
message
- the detail message. The detail message is saved for later retrieval by theThrowable.getMessage()
method.
-
-