File tree Expand file tree Collapse file tree 4 files changed +20
-136
lines changed
Expand file tree Collapse file tree 4 files changed +20
-136
lines changed Original file line number Diff line number Diff line change 1+ class HatchetError (Exception ):
2+ """Base exception for Hatchet Python SDK."""
3+
4+
5+ class HatchetConfigurationError (HatchetError ):
6+ """Raised when required configuration is missing or invalid."""
7+
8+
9+ class HatchetConnectionError (HatchetError ):
10+ """Raised when the SDK cannot connect to the Hatchet server."""
11+
12+
13+ class HatchetServerError (HatchetError ):
14+ """Raised when the Hatchet server returns an unexpected response."""
Original file line number Diff line number Diff line change 22import traceback
33from typing import cast
44
5+
56class HatchetConfigurationError (ValueError ):
67 """Raised when required configuration is missing or invalid."""
78
9+
810class InvalidDependencyError (Exception ):
911 pass
1012
You can’t perform that action at this time.
0 commit comments