Initialize a :class:`.MediaPostFailed` instance.
(self)
| 197 | """Indicate exceptions where media uploads failed..""" |
| 198 | |
| 199 | def __init__(self) -> None: |
| 200 | """Initialize a :class:`.MediaPostFailed` instance.""" |
| 201 | super().__init__( |
| 202 | "The attempted media upload action has failed. Possible causes include the" |
| 203 | " corruption of media files. Check that the media file can be opened on" |
| 204 | " your local machine.", |
| 205 | ) |