Raised when an error occurs during AST preprocessing or visiting in the DSL.
| 352 | |
| 353 | |
| 354 | class DSLAstPreprocessorError(DSLBaseError): |
| 355 | """ |
| 356 | Raised when an error occurs during AST preprocessing or visiting in the DSL. |
| 357 | """ |
| 358 | |
| 359 | # Same approach: You could override _format_message if you want |
| 360 | # to emphasize AST node details or anything specific to preprocessing. |
| 361 | pass |
| 362 | |
| 363 | |
| 364 | class DSLNotImplemented(DSLBaseError): |
no outgoing calls
no test coverage detected