Skip to content

Commit a750639

Browse files
authored
Update README.md
1 parent d3dc342 commit a750639

File tree

1 file changed

+23
-21
lines changed

1 file changed

+23
-21
lines changed

README.md

Lines changed: 23 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -811,27 +811,29 @@ JavaScript does not support 64 bit integers. All numbers are stored as 64 bit fl
811811

812812
The following errors may be reported:
813813

814-
- 1000: Route not found (404 NOT FOUND)
815-
- 1001: Table not found (404 NOT FOUND)
816-
- 1002: Argument count mismatch (422 UNPROCESSABLE ENTITY)
817-
- 1003: Record not found (404 NOT FOUND)
818-
- 1004: Origin is forbidden (403 FORBIDDEN)
819-
- 1005: Column not found (404 NOT FOUND)
820-
- 1006: Table already exists (409 CONFLICT)
821-
- 1007: Column already exists (409 CONFLICT)
822-
- 1008: Cannot read HTTP message (422 UNPROCESSABLE ENTITY)
823-
- 1009: Duplicate key exception (409 CONFLICT)
824-
- 1010: Data integrity violation (409 CONFLICT)
825-
- 1011: Authentication required (401 UNAUTHORIZED)
826-
- 1012: Authentication failed (403 FORBIDDEN)
827-
- 1013: Input validation failed (422 UNPROCESSABLE ENTITY)
828-
- 1014: Operation forbidden (403 FORBIDDEN)
829-
- 1015: Operation not supported (405 METHOD NOT ALLOWED)
830-
- 1016: Temporary or permanently blocked (403 FORBIDDEN)
831-
- 1017: Bad or missing XSRF token (403 FORBIDDEN)
832-
- 1018: Only AJAX requests allowed (403 FORBIDDEN)
833-
- 1019: File upload failed (422 UNPROCESSABLE ENTITY)
834-
- 9999: Unknown error (500: INTERNAL SERVER ERROR)
814+
| Error Code | HTTP Response Code | Message
815+
| ---------- | -------------------------- | --------------
816+
| 1000 | 404 NOT FOUND | Route not found
817+
| 1001 | 404 NOT FOUND | Table not found
818+
| 1002 | 422 UNPROCESSABLE ENTITY | Argument count mismatch
819+
| 1003 | 404 NOT FOUND | Record not found
820+
| 1004 | 403 FORBIDDEN | Origin is forbidden
821+
| 1005 | 404 NOT FOUND | Column not found
822+
| 1006 | 409 CONFLICT | Table already exists
823+
| 1007 | 409 CONFLICT | Column already exists
824+
| 1008 | 422 UNPROCESSABLE ENTITY | Cannot read HTTP message
825+
| 1009 | 409 CONFLICT | Duplicate key exception
826+
| 1010 | 409 CONFLICT | Data integrity violation
827+
| 1011 | 401 UNAUTHORIZED | Authentication required
828+
| 1012 | 403 FORBIDDEN | Authentication failed
829+
| 1013 | 422 UNPROCESSABLE ENTITY | Input validation failed
830+
| 1014 | 403 FORBIDDEN | Operation forbidden
831+
| 1015 | 405 METHOD NOT ALLOWED | Operation not supported
832+
| 1016 | 403 FORBIDDEN | Temporary or permanently blocked
833+
| 1017 | 403 FORBIDDEN | Bad or missing XSRF token
834+
| 1018 | 403 FORBIDDEN | Only AJAX requests allowed
835+
| 1019 | 422 UNPROCESSABLE ENTITY | File upload failed
836+
| 9999 | 500: INTERNAL SERVER ERROR | Unknown error
835837

836838
The following JSON structure is used:
837839

0 commit comments

Comments
 (0)