MCPcopy Create free account
hub / github.com/commandoperator/cmdop-sdk / PinDeniedError

Class PinDeniedError

python/src/cmdop/errors.py:89–95  ·  view source on GitHub ↗

``pin_denied`` — the connection PIN was rejected (wrong PIN, lockout). Subclasses :class:`PermissionError` so existing ``except PermissionError`` still catches it. Non-retryable: a wrong PIN won't fix itself on retry.

Source from the content-addressed store, hash-verified

87 "permission_denied": PermissionError,
88 "not_found": NotFoundError,
89 "conflict": ConflictError,
90 "rate_limited": RateLimitError,
91 "internal": ServerError,
92 "unavailable": UnavailableError,
93 "deadline_exceeded": TimeoutError,
94 "transport": ConnectionError,
95 "unsupported": UnsupportedError,
96 "protocol": ProtocolError,
97}
98

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected