Skip to content

Exceptions

anyschema.exceptions

UnavailablePipelineError

Bases: ValueError

Exception raised when a parser does not have a ParserPipeline set.

Source code in src/anyschema/exceptions.py
6
7
class UnavailablePipelineError(ValueError):
    """Exception raised when a parser does not have a ParserPipeline set."""

UnsupportedDTypeError

Bases: ValueError

Exception raised when a DType is not supported.

Source code in src/anyschema/exceptions.py
10
11
class UnsupportedDTypeError(ValueError):
    """Exception raised when a DType is not supported."""