ApiErrorCode: Add API error code 401, 405

Signed-off-by: Rohit Yadav <rohit.yadav@shapeblue.com>
This commit is contained in:
Rohit Yadav 2014-08-12 07:24:42 +02:00
parent accd57486e
commit e6d2b2391b

View File

@ -22,6 +22,8 @@ package org.apache.cloudstack.api;
*/
public enum ApiErrorCode {
UNAUTHORIZED(401),
METHOD_NOT_ALLOWED(405),
MALFORMED_PARAMETER_ERROR(430),
PARAM_ERROR(431),
UNSUPPORTED_ACTION_ERROR(432),