| 17 | |
| 18 | |
| 19 | class RPCException(Exception): |
| 20 | def __init__(self, value="", exception_type=""): |
| 21 | self.value = value |
| 22 | self.exception_type = exception_type |
| 23 | |
| 24 | def __str__(self): |
| 25 | return self.value |
| 26 | |
| 27 | |
| 28 | class QueryStateException(Exception): |
no outgoing calls
no test coverage detected