Exception raised when a Jupyter notebook is invalid or cannot be processed.
| 10 | |
| 11 | |
| 12 | class InvalidNotebookError(Exception): |
| 13 | """Exception raised when a Jupyter notebook is invalid or cannot be processed.""" |
| 14 | |
| 15 | def __init__(self, message: str) -> None: |
| 16 | super().__init__(message) |
| 17 | |
| 18 | |
| 19 | class InvalidGitHubTokenError(ValueError): |