Module serato_data.exc
Exceptions raised by various parsing methods.
Classes
class ParserError (*args, **kwargs)-
Expand source code
class ParserError(Exception): """Errors occuring during parsing of data files""" passErrors occuring during parsing of data files
Ancestors
- builtins.Exception
- builtins.BaseException
Subclasses
class ParserReadError (*args, **kwargs)-
Expand source code
class ParserReadError(ParserError): """Failed to read from a data file""" passFailed to read from a data file
Ancestors
- ParserError
- builtins.Exception
- builtins.BaseException
class SeratoError (*args, **kwargs)-
Expand source code
class SeratoError(Exception): """General errors regarding Serato data""" passGeneral errors regarding Serato data
Ancestors
- builtins.Exception
- builtins.BaseException
Subclasses
class SeratoFoundError (*args, **kwargs)-
Expand source code
class SeratoFoundError(SeratoNotFoundError): """More than one Serato installation was found""" passMore than one Serato installation was found
Ancestors
- SeratoNotFoundError
- SeratoError
- builtins.Exception
- builtins.BaseException
class SeratoNotFoundError (*args, **kwargs)-
Expand source code
class SeratoNotFoundError(SeratoError): """Serato installation was not found""" passSerato installation was not found
Ancestors
- SeratoError
- builtins.Exception
- builtins.BaseException
Subclasses