Check if this handler's criteria for success are met. Returns: True if successful, False otherwise
(self)
| 57 | raise NotImplementedError |
| 58 | |
| 59 | def is_successful(self) -> bool: |
| 60 | """Check if this handler's criteria for success are met. |
| 61 | |
| 62 | Returns: |
| 63 | True if successful, False otherwise |
| 64 | """ |
| 65 | return True |
| 66 | |
| 67 | def get_failure_message(self) -> str | None: |
| 68 | """Get failure message if handler failed. |