forked from All-Hands-AI/OpenHands
-
Notifications
You must be signed in to change notification settings - Fork 1
/
exceptions.py
63 lines (47 loc) · 1.94 KB
/
exceptions.py
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
62
63
class MaxCharsExceedError(Exception):
def __init__(self, num_of_chars=None, max_chars_limit=None):
if num_of_chars is not None and max_chars_limit is not None:
message = f'Number of characters {num_of_chars} exceeds MAX_CHARS limit: {max_chars_limit}'
else:
message = 'Number of characters exceeds MAX_CHARS limit'
super().__init__(message)
class AgentNoActionError(Exception):
def __init__(self, message='Agent must return an action'):
super().__init__(message)
class AgentNoInstructionError(Exception):
def __init__(self, message='Instruction must be provided'):
super().__init__(message)
class AgentEventTypeError(Exception):
def __init__(self, message='Event must be a dictionary'):
super().__init__(message)
class AgentAlreadyRegisteredError(Exception):
def __init__(self, name=None):
if name is not None:
message = f"Agent class already registered under '{name}'"
else:
message = 'Agent class already registered'
super().__init__(message)
class AgentNotRegisteredError(Exception):
def __init__(self, name=None):
if name is not None:
message = f"No agent class registered under '{name}'"
else:
message = 'No agent class registered'
super().__init__(message)
class LLMOutputError(Exception):
def __init__(self, message):
super().__init__(message)
class SandboxInvalidBackgroundCommandError(Exception):
def __init__(self, id=None):
if id is not None:
message = f'Invalid background command id {id}'
else:
message = 'Invalid background command id'
super().__init__(message)
class PlanInvalidStateError(Exception):
def __init__(self, state=None):
if state is not None:
message = f'Invalid state {state}'
else:
message = 'Invalid state'
super().__init__(message)