Add 404 text

This commit is contained in:
Christoph Hagen 2021-12-23 10:07:17 +01:00
parent 25a4f27a83
commit 07d22e2de5

View File

@ -83,6 +83,8 @@ function convertServerResponse(response) {
throw Error("Please log in again") throw Error("Please log in again")
case 403: // Forbidden case 403: // Forbidden
throw Error("Invalid username or password") throw Error("Invalid username or password")
case 404: // Not found
throw Error("Path not found")
case 410: // Gone case 410: // Gone
throw Error("The table could not be found") throw Error("The table could not be found")
case 406: // notAcceptable case 406: // notAcceptable