Coverage for src/chuck_data/exceptions.py: 0%

2 statements  

« prev     ^ index     » next       coverage.py v7.8.0, created at 2025-06-05 22:56 -0700

1""" 

2Custom exceptions for the clamp application. 

3""" 

4 

5 

6class PaginationCancelled(Exception): 

7 """ 

8 Exception raised when user cancels pagination. 

9 

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 """ 

13 

14 pass