Package io.deephaven
Class NoSuchElementException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
io.deephaven.UncheckedDeephavenException
io.deephaven.NoSuchElementException
- All Implemented Interfaces:
Serializable
Exception thrown when an element does not exist, generally when attempting to access or remove an element that is not
present.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConstructor.NoSuchElementException(String reason) Constructor.NoSuchElementException(String reason, Throwable cause) Constructor.NoSuchElementException(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
-
NoSuchElementException
public NoSuchElementException()Constructor. Delegates toUncheckedDeephavenException(). -
NoSuchElementException
Constructor. Delegates toUncheckedDeephavenException(String).- Parameters:
reason- the optional exception reason
-
NoSuchElementException
Constructor. Delegates toUncheckedDeephavenException(String, Throwable).- Parameters:
reason- the optional exception reasoncause- the optional exception cause
-
NoSuchElementException
Constructor. Delegates toUncheckedDeephavenException(Throwable).- Parameters:
cause- the optional exception cause
-