Source code for pyrocko.squirrel.error

# http://pyrocko.org - GPLv3
#
# The Pyrocko Developers, 21st Century
# ---|P------/S----------~Lg----------

from __future__ import absolute_import, print_function


[docs]class SquirrelError(Exception): pass
[docs]class NotAvailable(SquirrelError): pass
__all__ = [ 'SquirrelError', 'NotAvailable']