Package io.deephaven

Class UncheckedDeephavenException

All Implemented Interfaces:
Serializable
Direct Known Subclasses:
AggregationOperatorException, ArgumentException, AuthException, ConstructSnapshot.SnapshotInconsistentException, ControllerException, CsvImportProcessor.CSVImportException, DbAclUncheckedException, DndScriptExecutor.DndScriptExecutionFailure, FileHelper.FileDeletionException, FormulaCompilationException, IncompatibleTableDefinitionException, KafkaIngesterException, MisconfigurationException, MissingScopeException, OperationException, OutOfKeySpaceException, ParameterException, ParameterValidationException, PlotRuntimeException, QueryCancellationException, QueryConfigurationException, QueryException, RemoteQueryException, SchedulingException, SchemaException, ScriptEvaluationException, ScriptException, SizeException, StateException, TableInputHandler.TimeoutException, TableMapException, UncheckedPermissionException, UncheckedTableException, UnfetchableException, UnknownWorkerControlException, UnknownWorkerKindException, ValidatedArgumentException

public class UncheckedDeephavenException extends RuntimeException
The root of all Unchecked Deephaven exceptions
See Also:
  • Constructor Details

    • UncheckedDeephavenException

      public UncheckedDeephavenException(@Nullable String reason)
      Constructor. Delegates to RuntimeException(String).
      Parameters:
      reason - the optional exception reason
    • UncheckedDeephavenException

      public UncheckedDeephavenException(@Nullable String reason, @Nullable Throwable cause)
      Constructor. Delegates to RuntimeException(String, Throwable).
      Parameters:
      reason - the optional exception reason
      cause - the optional exception cause
    • UncheckedDeephavenException

      public UncheckedDeephavenException(@Nullable Throwable cause)
      Constructor. Delegates to RuntimeException(Throwable).
      Parameters:
      cause - the optional exception cause
    • UncheckedDeephavenException

      public UncheckedDeephavenException(@Nullable String message, @Nullable Throwable cause, boolean enableSuppression, boolean writableStackTrace)
      Parameters:
      message - the optional exception message
      cause - the optional exception cause
      enableSuppression - whether or not to enable suppression
      writableStackTrace - whether or not the stack trace is writable
    • UncheckedDeephavenException

      public UncheckedDeephavenException()
      Constructor. Delegates to RuntimeException().