Source code for pytan3.exceptions

# -*- coding: utf-8 -*-
"""Parent exceptions and warnings for the PyTan package."""
from __future__ import absolute_import
from __future__ import division
from __future__ import print_function
from __future__ import unicode_literals


[docs]class PyTanError(Exception): """Parent exception for all :mod:`pytan3` errors.""" pass
[docs]class PyTanWarning(Warning): """Parent warning for all :mod:`pytan3` warnings.""" pass