@@ -13,7 +13,7 @@ history lives in `CHANGELOG.md`.
1313
1414The v1.x line introduces no breaking changes for code that uses the
1515documented public surface (` Arcp\Client\ARCPClient ` , ` Arcp\Runtime\ARCPRuntime ` ,
16- the ` Arcp\Messages\… ` value objects, the ` Arcp\Errors\… ` exception
16+ the ` Arcp\Messages\... ` value objects, the ` Arcp\Errors\... ` exception
1717hierarchy, and the ` Arcp\Transport\Transport ` adapter contract).
1818
1919What changed:
@@ -40,19 +40,19 @@ try {
4040### Additive — ` TransportClosedException `
4141
4242Three transports (` StdioTransport ` , ` MemoryTransport ` , ` WebSocketTransport ` )
43- previously threw bare ` \RuntimeException('… closed') ` when called after
43+ previously threw bare ` \RuntimeException('... closed') ` when called after
4444close. They now throw ` Arcp\Errors\TransportClosedException ` , which
4545descends from ` Arcp\Errors\ARCPException ` (which extends
4646` \RuntimeException ` ). Existing ` catch (\RuntimeException $e) ` blocks
4747keep working; new code can catch the typed exception or
4848` ARCPExceptionInterface ` .
4949
50- ### Internal — ` Arcp\Internal\… ` namespace
50+ ### Internal — ` Arcp\Internal\... ` namespace
5151
5252Runtime and client internals (` HandshakeNegotiator ` ,
5353` ToolInvocationHandler ` , ` SubscriptionRouter ` , ` LifecycleHandler ` ,
5454` ArtifactDispatcher ` , ` ResponseRouter ` , etc.) live under
55- ` Arcp\Internal\… ` . They are marked ` @internal ` and are NOT part of the
55+ ` Arcp\Internal\... ` . They are marked ` @internal ` and are NOT part of the
5656backward-compatibility promise. Application code should depend only on
5757` Arcp\Client\ARCPClient ` and ` Arcp\Runtime\ARCPRuntime ` .
5858
0 commit comments