Raised when an internal invariance is violated in EXIR stack. Should hint users to report a bug to dev and expose the original error message.
| 33 | |
| 34 | |
| 35 | class InternalError(Exception): |
| 36 | """ |
| 37 | Raised when an internal invariance is violated in EXIR stack. |
| 38 | Should hint users to report a bug to dev and expose the original |
| 39 | error message. |
| 40 | """ |
| 41 | |
| 42 | def __init__(self, message: str) -> None: |
| 43 | super().__init__(message) |
| 44 | |
| 45 | |
| 46 | class ExportError(Exception): |
no outgoing calls
no test coverage detected