Coverage for /usr/lib/python3/dist-packages/sympy/core/coreerrors.py: 100%

2 statements  

« prev     ^ index     » next       coverage.py v7.9.1, created at 2025-06-14 15:55 +0200

1"""Definitions of common exceptions for :mod:`sympy.core` module. """ 

2 

3 

4class BaseCoreError(Exception): 

5 """Base class for core related exceptions. """ 

6 

7 

8class NonCommutativeExpression(BaseCoreError): 

9 """Raised when expression didn't have commutative property. """