Protocol-level error. Raised when: - Invalid message framing (header size mismatch) - Payload exceeds maximum size (16 MiB) - Malformed JSON in response - Unexpected message type
| 51 | |
| 52 | |
| 53 | class ProtocolError(UnityCLIError): |
| 54 | """Protocol-level error. |
| 55 | |
| 56 | Raised when: |
| 57 | - Invalid message framing (header size mismatch) |
| 58 | - Payload exceeds maximum size (16 MiB) |
| 59 | - Malformed JSON in response |
| 60 | - Unexpected message type |
| 61 | """ |
| 62 | |
| 63 | pass |
| 64 | |
| 65 | |
| 66 | class InstanceError(UnityCLIError): |
no outgoing calls
no test coverage detected