From 004952b732cc0eab2707dfd35ae35281591bc29d Mon Sep 17 00:00:00 2001 From: Bob Swift Date: Wed, 6 Oct 2021 17:32:17 -0600 Subject: [PATCH] Sort error messages. --- plugins/submit_isrc/__init__.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/plugins/submit_isrc/__init__.py b/plugins/submit_isrc/__init__.py index f559343b..b07926e2 100644 --- a/plugins/submit_isrc/__init__.py +++ b/plugins/submit_isrc/__init__.py @@ -80,6 +80,7 @@ 103: "The proxy host name was not found (invalid proxy hostname).", 104: "The connection to the proxy timed out or the proxy did not reply in time to the request sent.", 105: "The proxy requires authentication in order to honour the request but did not accept any credentials offered (if any).", + 199: "An unknown proxy-related error was detected.", 201: "The access to the remote content was denied (similar to HTTP error 403).", 202: "The operation requested on the remote content is not permitted.", 203: "The remote content was not found at the server (similar to HTTP error 404).", @@ -87,14 +88,13 @@ 205: "The request needed to be sent again, but this failed for example because the upload data could not be read a second time.", 206: "The request could not be completed due to a conflict with the current state of the resource.", 207: "The requested resource is no longer available at the server.", - 401: "The server encountered an unexpected condition which prevented it from fulfilling the request.", - 402: "The server does not support the functionality required to fulfill the request.", - 403: "The server is unable to handle the request at this time.", + 299: "An unknown error related to the remote content was detected.", 301: "The Network Access API cannot honor the request because the protocol is not known.", 302: "The requested operation is invalid for this protocol.", - 199: "An unknown proxy-related error was detected.", - 299: "An unknown error related to the remote content was detected.", 399: "A breakdown in protocol was detected (parsing error, invalid or unexpected responses, etc.).", + 401: "The server encountered an unexpected condition which prevented it from fulfilling the request.", + 402: "The server does not support the functionality required to fulfill the request.", + 403: "The server is unable to handle the request at this time.", 499: "An unknown error related to the server response was detected.", }