SyniRuntimeError.protocol constructor

SyniRuntimeError.protocol(
  1. String detail
)

A client-side protocol failure: the native output could not be parsed as the documented envelope (malformed JSON, non-object, etc.). Distinct from a runtime domain failure — never a successful response.

Implementation

factory SyniRuntimeError.protocol(String detail) =>
    SyniRuntimeError(detail, code: 'MALFORMED_RESPONSE');