PollingTimeoutError Class — typescript-sdk Architecture
Architecture documentation for the PollingTimeoutError class in async.ts from the typescript-sdk codebase.
Entity Profile
Relationship Graph
Source Code
src/async.ts lines 125–134
export class PollingTimeoutError extends Error {
constructor(
public readonly jobId: string,
public readonly timeoutMs: number,
public readonly attempts: number
) {
super(`Polling timed out for job ${jobId} after ${timeoutMs}ms (${attempts} attempts)`);
this.name = 'PollingTimeoutError';
}
}
Domain
Source
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free