Default error returned when a custom action has no handler.
(cls)
| 123 | |
| 124 | @classmethod |
| 125 | def no_handler(cls) -> CanvasError: |
| 126 | """Default error returned when a custom action has no handler.""" |
| 127 | return cls( |
| 128 | "canvas_action_no_handler", |
| 129 | "No handler implemented for this canvas action", |
| 130 | ) |
| 131 | |
| 132 | @classmethod |
| 133 | def handler_unset(cls) -> CanvasError: |
no outgoing calls