(
message: string,
readonly reason: PollFailReason,
readonly rejectCount: number,
options?: ErrorOptions,
)
| 33 | |
| 34 | export 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 |
nothing calls this directly
no outgoing calls
no test coverage detected