(self, message)
| 3 | |
| 4 | class PythonMyException7(Exception): |
| 5 | def __init__(self, message): |
| 6 | self.message = message |
| 7 | super().__init__(message) |
| 8 | |
| 9 | def __str__(self): |
| 10 | return "[PythonMyException7]: " + self.message.a |
nothing calls this directly
no outgoing calls
no test coverage detected