Sync contents

This commit is contained in:
Dylan Huang 2026-03-19 00:10:49 +00:00
parent 35a77e79fe
commit f3c0b1f179
17 changed files with 2069 additions and 632 deletions

View file

@ -121,6 +121,38 @@ class InternalServerError(APIStatusError)
HTTP 500+: An error occurred on the server.
## `SidecarError` Objects
```python
class SidecarError(TinkerError)
```
Base exception for subprocess sidecar errors.
## `SidecarStartupError` Objects
```python
class SidecarStartupError(SidecarError)
```
Raised when the sidecar subprocess fails to start or times out.
## `SidecarDiedError` Objects
```python
class SidecarDiedError(SidecarError)
```
Raised when the sidecar subprocess exits unexpectedly while requests are pending.
## `SidecarIPCError` Objects
```python
class SidecarIPCError(SidecarError)
```
Raised when communication with the sidecar subprocess fails.
## `RequestFailedError` Objects
```python