diff options
Diffstat (limited to 'chrome/test/webdriver/error_codes.h')
-rw-r--r-- | chrome/test/webdriver/error_codes.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/chrome/test/webdriver/error_codes.h b/chrome/test/webdriver/error_codes.h index f339ee0..ed5a83f 100644 --- a/chrome/test/webdriver/error_codes.h +++ b/chrome/test/webdriver/error_codes.h @@ -7,7 +7,7 @@ namespace webdriver { // These are the error codes defined in the WebDriver wire protcol. For more -// information, see +// information, see: // http://code.google.com/p/selenium/wiki/JsonWireProtocol#Response_Status_Codes enum ErrorCode { kSuccess = 0, @@ -27,7 +27,10 @@ enum ErrorCode { kBadRequest = 400, kSessionNotFound = 404, kMethodNotAllowed = 405, + kInternalServerError = 500, }; + } // namespace webdriver + #endif // CHROME_TEST_WEBDRIVER_ERROR_CODES_H_ |