Attaches a hint to the error. This method will overwrite the existing hint, if any.
(self, hint: str)
| 174 | self.hint = hint |
| 175 | |
| 176 | def set_hint(self, hint: str) -> None: |
| 177 | """Attaches a hint to the error. |
| 178 | |
| 179 | This method will overwrite the existing hint, if any. |
| 180 | """ |
| 181 | self.hint = hint |
| 182 | |
| 183 | |
| 184 | class CommandFailureCausedUIError(UIError): |