(self)
| 196 | self.hint = hint |
| 197 | |
| 198 | def __str__(self): |
| 199 | msg = self.args[0] |
| 200 | if self.detail: |
| 201 | msg += '\nDETAIL: {}'.format(self.detail) |
| 202 | if self.hint: |
| 203 | msg += '\nHINT: {}'.format(self.hint) |
| 204 | |
| 205 | return msg |
| 206 | |
| 207 | |
| 208 | class InterfaceError(InterfaceMessage, Exception): |
nothing calls this directly
no outgoing calls
no test coverage detected