Class SynchronizationFailedException
java.lang.Object
java.lang.Throwable
java.lang.Exception
de.bsvrz.ars.ars.mgmt.datatree.synchronization.SynchronizationFailedException
- All Implemented Interfaces:
Serializable
Exception, die geworfen wird, wenn die Synchronisation auf eine Datenidentifikation fehlgeschlagen ist
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionSynchronizationFailedException
(Duration timeout, Object element, Collection<? extends SyncKey<?>> otherLocks, Throwable parent) Exception-Konstruktor -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
SynchronizationFailedException
public SynchronizationFailedException(@Nullable Duration timeout, Object element, Collection<? extends SyncKey<?>> otherLocks, @Nullable Throwable parent) Exception-Konstruktor- Parameters:
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
)
-