(self, message: str)
| 61 | """Exit the program giving a message to the user.""" |
| 62 | |
| 63 | def __init__(self, message: str): |
| 64 | self.message = message |
| 65 | |
| 66 | def __str__(self) -> str: |
| 67 | return self.message |
nothing calls this directly
no outgoing calls
no test coverage detected