diff --git a/ITPlanning/api/exception.py b/ITPlanning/api/exception.py index 70a39f5..9c259a0 100644 --- a/ITPlanning/api/exception.py +++ b/ITPlanning/api/exception.py @@ -28,13 +28,11 @@ class ServerError(ITPlanningAPIException): class Unauthorized(ITPlanningAPIException): code = 401 - api_code = 40 message = "Wrong username or password." class Forbidden(ITPlanningAPIException): code = 403 - api_code = 50 message = "User is not authorized for the given operation."