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

Method constructor

src/utils/ultraplan/ccrSession.ts:35–43  ·  view source on GitHub ↗
(
    message: string,
    readonly reason: PollFailReason,
    readonly rejectCount: number,
    options?: ErrorOptions,
  )

Source from the content-addressed store, hash-verified

33
34export class UltraplanPollError extends Error {
35 constructor(
36 message: string,
37 readonly reason: PollFailReason,
38 readonly rejectCount: number,
39 options?: ErrorOptions,
40 ) {
41 super(message, options)
42 this.name = 'UltraplanPollError'
43 }
44}
45
46// Sentinel string the browser PlanModal includes in the feedback when the user

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected