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"""
    pass

Errors 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"""
    pass

Failed 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"""
    pass

General 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"""
    pass

More than one Serato installation was found

Ancestors

class SeratoNotFoundError (*args, **kwargs)
Expand source code
class SeratoNotFoundError(SeratoError):
    """Serato installation was not found"""
    pass

Serato installation was not found

Ancestors

  • SeratoError
  • builtins.Exception
  • builtins.BaseException

Subclasses