add observer cruise creation and completion (#1354)

This commit is contained in:
Shuchang Zheng
2024-12-08 12:43:59 -08:00
committed by GitHub
parent fbc6677f9e
commit bda119027e
6 changed files with 145 additions and 14 deletions

View File

@@ -504,7 +504,7 @@ class CachedActionPlanError(SkyvernException):
super().__init__(message)
class InvalidUrl(SkyvernException):
class InvalidUrl(SkyvernHTTPException):
def __init__(self, url: str) -> None:
super().__init__(f"Invalid URL: {url}. Skyvern supports HTTP and HTTPS urls with max 2083 character length.")