Coverage for src/pullapprove/exceptions.py: 67%
3 statements
« prev ^ index » next coverage.py v7.8.2, created at 2026-03-11 22:51 -0500
« prev ^ index » next coverage.py v7.8.2, created at 2026-03-11 22:51 -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")