Source code for pathomx.custom_exceptions

from __future__ import unicode_literals
import logging
logging.debug('Loading custom_exceptions.py')

import sys

if sys.version_info < (3, 0):  # Python 2 only
    from exceptions import Exception


[docs]class PathomxIncorrectFileFormatException(Exception): pass
[docs]class PathomxIncorrectFileStructureException(Exception): pass
[docs]class PathomxExternalResourceTimeoutException(Exception): pass
[docs]class PathomxExternalResourceUnavailableException(Exception): pass