Initialize a :class:`.DuplicateReplaceException` instance.
(self)
| 25 | """Indicate exceptions that involve the replacement of :class:`.MoreComments`.""" |
| 26 | |
| 27 | def __init__(self) -> None: |
| 28 | """Initialize a :class:`.DuplicateReplaceException` instance.""" |
| 29 | super().__init__( |
| 30 | "A duplicate comment has been detected. Are you attempting to call 'replace_more_comments' more than once?" |
| 31 | ) |
| 32 | |
| 33 | |
| 34 | class InvalidFlairTemplateID(ClientException): |