Raised when a table does not exist.
| 71 | |
| 72 | |
| 73 | class StashTableNotFoundError(StashError): |
| 74 | """Raised when a table does not exist.""" |
| 75 | |
| 76 | def __init__(self, table_name): |
| 77 | self.table_name = table_name |
| 78 | super().__init__(f"Stash table not found: {table_name}") |
| 79 | |
| 80 | |
| 81 | class StashKeyNotFoundError(StashError): |
no outgoing calls