added exceptions for HTTPS/shield related statuses
This commit is contained in:
@ -104,10 +104,10 @@ var statusCodes = {
|
||||
409: 'Conflict',
|
||||
|
||||
/**
|
||||
* Forbidden
|
||||
* AuthorizationException
|
||||
* @param {String} [msg] - An error message that will probably end up in a log.
|
||||
*/
|
||||
403: 'Forbidden',
|
||||
403: 'Authorization Exception',
|
||||
|
||||
/**
|
||||
* NotFound
|
||||
@ -115,6 +115,12 @@ var statusCodes = {
|
||||
*/
|
||||
404: 'Not Found',
|
||||
|
||||
/**
|
||||
* AuthenticationException
|
||||
* @param {String} [msg] - An error message that will probably end up in a log.
|
||||
*/
|
||||
401: 'Authentication Exception',
|
||||
|
||||
/**
|
||||
* BadRequest
|
||||
* @param {String} [msg] - An error message that will probably end up in a log.
|
||||
|
||||
Reference in New Issue
Block a user