Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion appdaemon/exceptions.py
Original file line number Diff line number Diff line change
Expand Up @@ -179,8 +179,13 @@ def wrapper(*args, **kwargs):


# Used in the adstream module
@dataclass
class RequestHandlerException(AppDaemonException):
pass
msg: str

def __str__(self):
return f"Error handling HTTP request: {self.msg}"


@dataclass
class PersistentNamespaceFailed(AppDaemonException):
Expand Down
2 changes: 1 addition & 1 deletion docs/HISTORY.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ None

**Fixes**

None
- Fixed an error with `RequestHandlerException` in the HTTP subsystem

**Breaking Changes**

Expand Down
Loading