Coverage for src/pullapprove/exceptions.py: 67%
3 statements
« prev ^ index » next coverage.py v7.14.1, created at 2026-06-08 22:13 -0500
« prev ^ index » next coverage.py v7.14.1, created at 2026-06-08 22:13 -0500
1class LargeScaleChangeException(Exception):
2 """
3 Can be raised to indicate this is a large-scale change,
4 often triggered by a diff so large the platform complains about it.
5 """
7 def __init__(self) -> None:
8 super().__init__("Large scale change detected")