Package io.deephaven
Class ElementExistsException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
io.deephaven.UncheckedDeephavenException
io.deephaven.ElementExistsException
- All Implemented Interfaces:
Serializable
Exception thrown when an element already exists, generally when attempting to add an element that is already present.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConstructor.ElementExistsException(String reason) Constructor.ElementExistsException(String reason, Throwable cause) Constructor.ElementExistsException(Throwable cause) Constructor. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
ElementExistsException
public ElementExistsException()Constructor. Delegates toUncheckedDeephavenException(). -
ElementExistsException
Constructor. Delegates toUncheckedDeephavenException(String).- Parameters:
reason- the optional exception reason
-
ElementExistsException
Constructor. Delegates toUncheckedDeephavenException(String, Throwable).- Parameters:
reason- the optional exception reasoncause- the optional exception cause
-
ElementExistsException
Constructor. Delegates toUncheckedDeephavenException(Throwable).- Parameters:
cause- the optional exception cause
-