Source code for intermine.errors

from intermine.util import ReadableException

[docs]class UnimplementedError(Exception): pass
[docs]class ServiceError(ReadableException): """Errors in the creation and use of the Service object""" pass
[docs]class WebserviceError(IOError): """Errors from interaction with the webservice""" pass