Error Codes
ArangoDB error code constants are provided for convenience.
Example
from arangoasync import errno
# Some examples
assert errno.NOT_IMPLEMENTED == 9
assert errno.DOCUMENT_REV_BAD == 1239
assert errno.DOCUMENT_NOT_FOUND == 1202
You can see the full list of error codes in the errno.py file.
For more information, refer to the ArangoDB Manual.