error ¶
Classes:
-
CustomInlineExprError
–Thrown when a InlineExpr error occurs.
CustomInlineExprError ¶
Bases: CustomRuntimeError
Thrown when a InlineExpr error occurs.
Methods:
-
add_stack_infos
–Adds additional informations on the expr vars used within the with statement of a InlineExprWrapper.
add_stack_infos ¶
Adds additional informations on the expr vars used within the with statement of a InlineExprWrapper.
Parameters:
-
expr_vars
¶dict[str, Any]
) –Dictionary containing the current scope's local expr variables.
-
ie
¶InlineExprWrapper
) –The InlineExprWrapper instance.
Source code in vsexprtools/inline/error.py
19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 |
|