45 lines
1.3 KiB
Python
45 lines
1.3 KiB
Python
from __future__ import unicode_literals
|
|
|
|
import json
|
|
from werkzeug.exceptions import BadRequest
|
|
|
|
|
|
class ResourceNotFoundError(BadRequest):
|
|
def __init__(self, message):
|
|
super(ResourceNotFoundError, self).__init__()
|
|
self.description = json.dumps(
|
|
{"message": message, "__type": "ResourceNotFoundException"}
|
|
)
|
|
|
|
|
|
class UserNotFoundError(BadRequest):
|
|
def __init__(self, message):
|
|
super(UserNotFoundError, self).__init__()
|
|
self.description = json.dumps(
|
|
{"message": message, "__type": "UserNotFoundException"}
|
|
)
|
|
|
|
|
|
class UsernameExistsException(BadRequest):
|
|
def __init__(self, message):
|
|
super(UsernameExistsException, self).__init__()
|
|
self.description = json.dumps(
|
|
{"message": message, "__type": "UsernameExistsException"}
|
|
)
|
|
|
|
|
|
class GroupExistsException(BadRequest):
|
|
def __init__(self, message):
|
|
super(GroupExistsException, self).__init__()
|
|
self.description = json.dumps(
|
|
{"message": message, "__type": "GroupExistsException"}
|
|
)
|
|
|
|
|
|
class NotAuthorizedError(BadRequest):
|
|
def __init__(self, message):
|
|
super(NotAuthorizedError, self).__init__()
|
|
self.description = json.dumps(
|
|
{"message": message, "__type": "NotAuthorizedException"}
|
|
)
|