Files
ReQFlow/data/errors.py
Angxiao Yue 5bad7f2134 upload code
2025-02-20 17:54:00 +08:00

26 lines
464 B
Python

"""Error class for handled errors."""
class DataError(Exception):
"""Data exception."""
pass
class FileExistsError(DataError):
"""Raised when file already exists."""
pass
class MmcifParsingError(DataError):
"""Raised when mmcif parsing fails."""
pass
class ResolutionError(DataError):
"""Raised when resolution isn't acceptable."""
pass
class LengthError(DataError):
"""Raised when length isn't acceptable."""
pass