Exit the program giving a message to the user.
| 57 | |
| 58 | |
| 59 | class UserMessageError(CopierError): |
| 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 |
| 67 | |
| 68 | |
| 69 | class UnsupportedVersionError(UserMessageError): |
no outgoing calls
no test coverage detected