Exceptions thrown when the sensors used by the agent take too long to receive data
| 33 | |
| 34 | |
| 35 | class SensorReceivedNoData(Exception): |
| 36 | """ |
| 37 | Exceptions thrown when the sensors used by the agent take too long to receive data |
| 38 | """ |
| 39 | |
| 40 | def __init__(self, message): |
| 41 | super(SensorReceivedNoData, self).__init__(message) |
| 42 | |
| 43 | |
| 44 | class GenericMeasurement(object): |