11 lines
184 B
Python
11 lines
184 B
Python
from __future__ import annotations
|
|
|
|
from dataclasses import dataclass
|
|
from typing import Any
|
|
|
|
|
|
@dataclass(frozen=True)
|
|
class InvariantViolation:
|
|
invariant_id: str
|
|
message: str
|