| 95 | |
| 96 | |
| 97 | class InvalidArgumentError(GSError, ValueError, AssertionError): |
| 98 | def __init__(self, message=None): |
| 99 | super(InvalidArgumentError, self).__init__(message) |
| 100 | |
| 101 | |
| 102 | class PermissionDeniedError(GSError): |
no outgoing calls
no test coverage detected