public class DrillRuntimeException extends RuntimeException
| Constructor and Description |
|---|
DrillRuntimeException() |
DrillRuntimeException(String message) |
DrillRuntimeException(String message,
Throwable cause) |
DrillRuntimeException(String message,
Throwable cause,
boolean enableSuppression,
boolean writableStackTrace) |
DrillRuntimeException(Throwable cause) |
| Modifier and Type | Method and Description |
|---|---|
static void |
checkInterrupted()
This method can be called within loops to check whether the current thread has been
interrupted; it ensures that operator implementation can respond to query cancellation
in a timely manner.
|
static DrillRuntimeException |
create(String format,
Object... args) |
static DrillRuntimeException |
create(Throwable cause,
String format,
Object... args) |
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toStringpublic DrillRuntimeException()
public DrillRuntimeException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace)
public DrillRuntimeException(String message)
public DrillRuntimeException(Throwable cause)
public static DrillRuntimeException create(String format, Object... args)
public static DrillRuntimeException create(Throwable cause, String format, Object... args)
public static void checkInterrupted()
Calling this method will result in the following behavior:
Copyright © 2021 The Apache Software Foundation. All rights reserved.