MCPcopy Create free account
hub / github.com/codeaashu/claude-code / constructor

Method constructor

src/utils/errors.ts:64–70  ·  view source on GitHub ↗
(
    message: string,
    public readonly formattedMessage: string,
  )

Source from the content-addressed store, hash-verified

62
63export class TeleportOperationError extends Error {
64 constructor(
65 message: string,
66 public readonly formattedMessage: string,
67 ) {
68 super(message)
69 this.name = 'TeleportOperationError'
70 }
71}
72
73/**

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected