[docs]
class DifferentAtomOrdering(Exception):
pass
[docs]
class CalculationFailedException(Exception):
def __init__(self, msg="", path=None):
super().__init__(msg)
self.path = path
[docs]
class RunAfterCalculationFailedException(Exception):
def __init__(self, msg="", err=None):
super().__init__(msg)
self.err = err
[docs]
class HEIIsFirstOrLastException(Exception):
pass