Source code for pylibftdi._base

"""
pylibftdi - python wrapper for libftdi

Copyright (c) 2010-2015 Ben Bass <benbass@codedstructure.net>
See LICENSE file for details and (absence of) warranty

pylibftdi: http://bitbucket.org/codedstructure/pylibftdi

"""

# This module contains things needed by at least one other
# module so as to prevent circular imports.

__ALL__ = ['FtdiError', 'LibraryMissingError']


[docs]class FtdiError(Exception): pass
[docs]class LibraryMissingError(FtdiError): pass