| 135 | |
| 136 | |
| 137 | class UnauthorizedException(ApiException): |
| 138 | |
| 139 | def __init__(self, status=None, reason=None, http_resp=None): |
| 140 | super(UnauthorizedException, self).__init__(status, reason, http_resp) |
| 141 | |
| 142 | |
| 143 | class ForbiddenException(ApiException): |