Source code for python_introspect.exceptions
"""Exceptions for python-introspect."""
[docs]
class SignatureAnalysisError(IntrospectionError):
"""Exception raised when signature analysis fails."""
pass
[docs]
class DocstringParsingError(IntrospectionError):
"""Exception raised when docstring parsing fails."""
pass
[docs]
class TypeResolutionError(IntrospectionError):
"""Exception raised when type resolution fails."""
pass