-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathexceptions.py
More file actions
61 lines (37 loc) · 1.06 KB
/
exceptions.py
File metadata and controls
61 lines (37 loc) · 1.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
# Custom exceptions for DataElf
class PilotError(Exception):
#Base exception for all pilot errors.
pass
class DatabaseError(PilotError):
#Database related errors (connection, query, etc.).
pass
class DatabaseConnectionError(DatabaseError):
#Failed to connect to database.
pass
class DatasetNotFoundError(DatabaseError):
#Requested dataset/table not found in database.
pass
class LLMError(PilotError):
#LLM API related errors.
pass
class LLMConnectionError(LLMError):
#Failed to connect to LLM API.
pass
class LLMResponseError(LLMError):
#LLM returned invalid response.
pass
class ToolExecutionError(PilotError):
#Tool execution failed.
pass
class ToolNotFoundError(ToolExecutionError):
#Requested tool not found in registry.
pass
class ToolParameterError(ToolExecutionError):
#Tool parameter validation failed.
pass
class PipelineExecutionError(PilotError):
#Pipeline DSL execution failed.
pass
class ConfigError(PilotError):
#Configuration related errors.
pass