Coverage for src/exceptions.py: 100%
2 statements
« prev ^ index » next coverage.py v7.8.0, created at 2025-06-05 22:56 -0700
« prev ^ index » next coverage.py v7.8.0, created at 2025-06-05 22:56 -0700
1"""
2Custom exceptions for the clamp application.
3"""
6class PaginationCancelled(Exception):
7 """
8 Exception raised when user cancels pagination.
10 This is used to signal that pagination was cancelled by user action
11 (pressing 'q') and should bubble up to return control to the main prompt.
12 """
14 pass