arangojs
Version:
The official ArangoDB JavaScript driver.
21 lines • 911 B
JavaScript
/**
* Error codes handled by arangojs.
*
* See also [ArangoDB error documentation](https://www.arangodb.com/docs/stable/appendix-error-codes.html).
*
* @packageDocumentation
* @internal
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.GRAPH_NOT_FOUND = exports.DATABASE_NOT_FOUND = exports.VIEW_NOT_FOUND = exports.COLLECTION_NOT_FOUND = exports.DOCUMENT_NOT_FOUND = exports.ANALYZER_NOT_FOUND = exports.ERROR_ARANGO_CONFLICT = exports.ERROR_ARANGO_MAINTENANCE_MODE = exports.TRANSACTION_NOT_FOUND = void 0;
exports.TRANSACTION_NOT_FOUND = 10;
exports.ERROR_ARANGO_MAINTENANCE_MODE = 503;
exports.ERROR_ARANGO_CONFLICT = 1200;
exports.ANALYZER_NOT_FOUND = 1202;
exports.DOCUMENT_NOT_FOUND = 1202;
exports.COLLECTION_NOT_FOUND = 1203;
exports.VIEW_NOT_FOUND = 1203;
exports.DATABASE_NOT_FOUND = 1228;
exports.GRAPH_NOT_FOUND = 1924;
//# sourceMappingURL=codes.js.map
;