Coverage for human_requests/abstraction/errors.py: 100%

4 statements  

« prev     ^ index     » next       coverage.py v7.14.1, created at 2026-05-28 00:39 +0000

1from __future__ import annotations 

2 

3 

4class UserScriptError(RuntimeError): 

5 """Base class for errors raised by user-provided scripts.""" 

6 

7 

8class WarmupError(UserScriptError): 

9 """Raised when a warmup script fails.""" 

10 

11 

12class MethodPipelineError(UserScriptError): 

13 """Raised when a method pipeline fails."""