blob: 62337c676e0e189e462b14d84a67262f34edb34d [file] [log] [blame]
"""Defines an error class used by CI scripts."""
import dataclasses
@dataclasses.dataclass(frozen=True,kw_only=True)
class CIError(Exception):
"""Represents an error known to a CI script."""
exit_code: int = 1