Enum DataExecutionErrorCode

DataExecutionErrorCode

An enumeration of data execution error codes.

To call an enum, you call its parent class, name, and property. For example, SpreadsheetApp.DataExecutionErrorCode.TIME_OUT.

Properties

PropertyTypeDescription
DATA_EXECUTION_ERROR_CODE_UNSUPPORTEDEnumA data execution error code that is not supported in Apps Script.
NONEEnumThe data execution has no error.
TIME_OUTEnumThe data execution timed out. Please update the data source specification.
TOO_MANY_ROWSEnumThe data execution returns more rows than the limit. Please update the data source specification.
TOO_MANY_COLUMNSEnumThe data execution returns more columns than the limit. Please update the data source specification.
TOO_MANY_CELLSEnumThe data execution returns more cells than the limit. Please update the data source specification.
ENGINEEnumData execution engine error. Use DataExecutionStatus.getErrorMessage() for details.
PARAMETER_INVALIDEnumInvalid data execution parameter. The source cell must exist and contain only a number or text. Please update the data source specification.
UNSUPPORTED_DATA_TYPEEnumThe data execution returns unsupported data type. Please update the data source specification.

For BigQuery, ARRAY or STRUCT type is not supported.

DUPLICATE_COLUMN_NAMESEnumThe data execution returns duplicate column names. Please update the data source specification.
INTERRUPTEDEnumThe data execution is interrupted. Please refresh later.
OTHEREnumOther errors.
TOO_MANY_CHARS_PER_CELLEnumThe data execution returns values that exceed the maximum characters allowed in a single cell. Please update the data source specification.
DATA_NOT_FOUNDEnumThe database referenced by the data source is not found. Please update the data source specification.
PERMISSION_DENIEDEnumThe user does not have access to the database referenced by the data source. Please update the data source specification or contact the owner of the billing project to request access.