Base class for DroneKit related exceptions. :param String message: Message string describing the exception
| 55 | |
| 56 | |
| 57 | class APIException(Exception): |
| 58 | """ |
| 59 | Base class for DroneKit related exceptions. |
| 60 | |
| 61 | :param String message: Message string describing the exception |
| 62 | """ |
| 63 | |
| 64 | def __init__(self, message): |
| 65 | super(APIException, self).__init__(message) |
| 66 | |
| 67 | |
| 68 | class Attitude(object): |
no outgoing calls
no test coverage detected