comparison http-response-status-codes.inc @ 49:6cb775b62281

Fix error with private variable.
author Tom Fredrik "BFG" Klaussen <bfg@blenning.no>
date Tue, 09 Oct 2012 20:12:23 +0200
parents c6d0892f81ff
children
comparison
equal deleted inserted replaced
48:c6d0892f81ff 49:6cb775b62281
85 const HTTP_TEMPORARY_REDIRECT = 307; 85 const HTTP_TEMPORARY_REDIRECT = 307;
86 86
87 // [Client Error 4xx] 87 // [Client Error 4xx]
88 /** 88 /**
89 * Defines the beginning of errorCodes 89 * Defines the beginning of errorCodes
90 */ 90 * @private
91 private const errorCodesBeginAt = 400; 91 */
92 const errorCodesBeginAt = 400;
92 /** 93 /**
93 * <a href="http://httpstatus.es/400">HTTP_BAD_REQUEST</a> 94 * <a href="http://httpstatus.es/400">HTTP_BAD_REQUEST</a>
94 */ 95 */
95 const HTTP_BAD_REQUEST = 400; 96 const HTTP_BAD_REQUEST = 400;
96 /** 97 /**