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