public class QueryException extends RuntimeException implements SanitizableException
The Object Model that QueryException follows is a little non-intuitive as the primary way that a QueryException is generated is through a child class. However, those child classes are *not* equivalent to a QueryException, instead they act as a Factory of QueryException objects. This can be seen in two different places.
1. When sanitize() is called, the response is a QueryException without any indication of which original exception occurred. 2. When these objects get serialized across the wire the recipient deserializes a QueryException. The client is never expected, and fundamentally is not allowed to, ever deserialize a child class of QueryException.
For this reason, QueryException must contain all potential state that any of its child classes could ever want to push across the wire. Additionally, any catch clauses expecting one of the child Exceptions must know that it is running inside of code where the exception has not traveled across the wire. If there is a chance that the exception could have been serialized across the wire, the code must catch a QueryException and check the errorCode instead.
As a corollary, adding new state or adjusting the logic of this class must always be done in a backwards-compatible fashion across all child classes of QueryException.
If there is any need to do different logic based on the type of error that has happened, the only reliable method of discerning the type of the error is to look at the errorCode String. Because these Strings are considered part of the API, they are not allowed to change and must maintain their same semantics. The known errorCode Strings are pulled together as public static fields on this class in order to make it more clear what options exist.
QueryResource and SqlResource are expected to emit the JSON form of this object when errors happen.
| Modifier and Type | Class and Description |
|---|---|
static class |
QueryException.FailType |
| Modifier and Type | Field and Description |
|---|---|
static String |
BAD_QUERY_CONTEXT_ERROR_CODE |
static String |
JSON_PARSE_ERROR_CODE
Error codes
|
static String |
PLAN_VALIDATION_FAILED_ERROR_CODE |
static String |
QUERY_CANCELED_ERROR_CODE |
static String |
QUERY_CAPACITY_EXCEEDED_ERROR_CODE |
static String |
QUERY_INTERRUPTED_ERROR_CODE |
static String |
QUERY_TIMEOUT_ERROR_CODE |
static String |
QUERY_UNSUPPORTED_ERROR_CODE |
static String |
RESOURCE_LIMIT_EXCEEDED_ERROR_CODE |
static String |
SQL_PARSE_FAILED_ERROR_CODE |
static String |
SQL_QUERY_UNSUPPORTED_ERROR_CODE |
static String |
TRUNCATED_RESPONSE_CONTEXT_ERROR_CODE |
static String |
UNAUTHORIZED_ERROR_CODE |
static String |
UNKNOWN_EXCEPTION_ERROR_CODE |
static String |
UNSUPPORTED_OPERATION_ERROR_CODE |
| Modifier | Constructor and Description |
|---|---|
|
QueryException(String errorCode,
String errorMessage,
String errorClass,
String host) |
protected |
QueryException(Throwable cause,
String errorCode,
String errorClass,
String host) |
protected |
QueryException(Throwable cause,
String errorCode,
String errorMessage,
String errorClass,
String host) |
| Modifier and Type | Method and Description |
|---|---|
static QueryException.FailType |
fromErrorCode(String errorCode) |
String |
getErrorClass() |
String |
getErrorCode() |
QueryException.FailType |
getFailType() |
String |
getHost() |
String |
getMessage() |
protected static String |
resolveHostname() |
QueryException |
sanitize(Function<String,String> errorMessageTransformFunction)
Apply the function for transforming the error message then return new Exception with sanitized fields and transformed message.
|
String |
toString() |
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTracepublic static final String JSON_PARSE_ERROR_CODE
public static final String BAD_QUERY_CONTEXT_ERROR_CODE
public static final String QUERY_CAPACITY_EXCEEDED_ERROR_CODE
public static final String QUERY_INTERRUPTED_ERROR_CODE
public static final String QUERY_CANCELED_ERROR_CODE
public static final String UNAUTHORIZED_ERROR_CODE
public static final String UNSUPPORTED_OPERATION_ERROR_CODE
public static final String TRUNCATED_RESPONSE_CONTEXT_ERROR_CODE
public static final String UNKNOWN_EXCEPTION_ERROR_CODE
public static final String QUERY_TIMEOUT_ERROR_CODE
public static final String QUERY_UNSUPPORTED_ERROR_CODE
public static final String RESOURCE_LIMIT_EXCEEDED_ERROR_CODE
public static final String SQL_PARSE_FAILED_ERROR_CODE
public static final String PLAN_VALIDATION_FAILED_ERROR_CODE
public static final String SQL_QUERY_UNSUPPORTED_ERROR_CODE
protected QueryException(Throwable cause, String errorCode, String errorClass, String host)
protected QueryException(Throwable cause, String errorCode, String errorMessage, String errorClass, String host)
public static QueryException.FailType fromErrorCode(String errorCode)
public String getMessage()
getMessage in class Throwablepublic String getErrorClass()
public String getHost()
public QueryException sanitize(@NotNull Function<String,String> errorMessageTransformFunction)
SanitizableExceptionsanitize in interface SanitizableExceptionpublic QueryException.FailType getFailType()
Copyright © 2011–2023 The Apache Software Foundation. All rights reserved.