Klasse SynchronizationFailedException
java.lang.Object
java.lang.Throwable
java.lang.Exception
de.bsvrz.ars.ars.mgmt.datatree.synchronization.SynchronizationFailedException
- Alle implementierten Schnittstellen:
Serializable
Exception, die geworfen wird, wenn die Synchronisation auf eine Datenidentifikation fehlgeschlagen ist
- Siehe auch:
-
Konstruktorübersicht
KonstruktorenKonstruktorBeschreibungSynchronizationFailedException
(Duration timeout, Object element, Collection<? extends SyncKey<?>> otherLocks, Throwable parent) Exception-Konstruktor -
Methodenübersicht
Von Klasse geerbte Methoden java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Konstruktordetails
-
SynchronizationFailedException
public SynchronizationFailedException(@Nullable Duration timeout, Object element, Collection<? extends SyncKey<?>> otherLocks, @Nullable Throwable parent) Exception-Konstruktor- Parameter:
timeout
- Abgelaufener Timeout (kann null sein, falls kein Timeout abgelaufen ist)element
- Element, auf das Synchronisiert wurde (z. B. Datenidentifikation)otherLocks
- Andere gehaltene Locks, die vermutlich die Synchronisierung verhindertenparent
- Verursachende Exception (i. d. R. eineInterruptedException
)
-