Merge pull request #248 from Zenedith/err-429-too-many-requests

Added support for http error 429: 'Too Many Requests'
This commit is contained in:
Spencer
2015-08-05 13:11:22 -07:00

View File

@ -123,6 +123,12 @@ var statusCodes = {
*/
412: 'Precondition Failed',
/**
* Too Many Requests
* @param {String} [msg] - An error message that will probably end up in a log.
*/
429: 'Too Many Requests',
/**
* Conflict
* @param {String} [msg] - An error message that will probably end up in a log.