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 withnullas 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.StringtoString()Liefert eine textuelle Beschreibung dieses Objekts für Debug-Zwecke.Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTraceMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Constructor Details
-
NoSuchVersionException
public NoSuchVersionException()Constructs a new exception withnullas 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.
-
-
Method Details
-
toString
public java.lang.String toString()Liefert eine textuelle Beschreibung dieses Objekts für Debug-Zwecke.- Overrides:
toStringin classjava.lang.Throwable- Returns:
- Beschreibung dieses Objekts.
-