pyvista_cad.CadError

On this page

pyvista_cad.CadError#

exception CadError[source]#

Base class for all pyvista-cad errors.

All errors raised by pyvista-cad inherit from this class so that downstream code can catch any CAD-related failure with a single except clause.

Examples

>>> from pyvista_cad import CadError
>>> issubclass(CadError, Exception)
True