Class NoSuchVersionException
java.lang.Object
java.lang.Throwable
java.lang.Exception
de.bsvrz.sys.funclib.dataSerializer.NoSuchVersionException
- All Implemented Interfaces:
Serializable
Ausnahme, die beim Erzeugen von Serialisieren oder Deserialisierern erzeugt wird, um zu signalisieren, dass die gewünschte Version nicht verfügbar
ist.
-
Constructor Summary
ConstructorsConstructorDescriptionConstructs a new exception withnull
as its detail message.NoSuchVersionException
(String message) Constructs a new exception with the specified detail message. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace
-
Constructor Details
-
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
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.
-
-
Method Details