Package io.deephaven
Class UncheckedDeephavenException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
io.deephaven.UncheckedDeephavenException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
AggregationOperatorException
,ArgumentException
,ConstructSnapshot.SnapshotInconsistentException
,CsvImportProcessor.CSVImportException
,DbAclUncheckedException
,DndScriptExecutor.DndScriptExecutionFailure
,FileHelper.FileDeletionException
,FormulaCompilationException
,IncompatibleTableDefinitionException
,KafkaIngesterException
,MisconfigurationException
,MissingScopeException
,OperationException
,OutOfKeySpaceException
,ParameterException
,ParameterValidationException
,PlotRuntimeException
,QueryCancellationException
,io.deephaven.enterprise.controller.exception.QueryConfigurationException
,QueryException
,RemoteQueryException
,SchemaException
,ScriptEvaluationException
,SizeException
,StateException
,TableInputHandler.TimeoutException
,TableMapException
,UncheckedPermissionException
,UncheckedTableException
,UnfetchableException
,UnknownWorkerControlException
,UnknownWorkerKindException
,ValidatedArgumentException
The root of all Unchecked Deephaven exceptions
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConstructor.UncheckedDeephavenException
(String reason) Constructor.UncheckedDeephavenException
(String reason, Throwable cause) Constructor.UncheckedDeephavenException
(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) Constructor.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
-
UncheckedDeephavenException
Constructor. Delegates toRuntimeException(String)
.- Parameters:
reason
- the optional exception reason
-
UncheckedDeephavenException
Constructor. Delegates toRuntimeException(String, Throwable)
.- Parameters:
reason
- the optional exception reasoncause
- the optional exception cause
-
UncheckedDeephavenException
Constructor. Delegates toRuntimeException(Throwable)
.- Parameters:
cause
- the optional exception cause
-
UncheckedDeephavenException
public UncheckedDeephavenException(@Nullable String message, @Nullable Throwable cause, boolean enableSuppression, boolean writableStackTrace) Constructor. Delegates toRuntimeException(String, Throwable, boolean, boolean)
.- Parameters:
message
- the optional exception messagecause
- the optional exception causeenableSuppression
- whether or not to enable suppressionwritableStackTrace
- whether or not the stack trace is writable
-
UncheckedDeephavenException
public UncheckedDeephavenException()Constructor. Delegates toRuntimeException()
.
-