(
message: string,
url: string,
public readonly statusCode: number,
public readonly apiError?: string,
public readonly apiErrorData?: any,
options?: { cause?: unknown },
)
| 22 | */ |
| 23 | export class YouTubeAPIError extends YouTubeError { |
| 24 | constructor( |
| 25 | message: string, |
| 26 | url: string, |
| 27 | public readonly statusCode: number, |
| 28 | public readonly apiError?: string, |
| 29 | public readonly apiErrorData?: any, |
| 30 | options?: { cause?: unknown }, |
| 31 | ) { |
| 32 | super(message, url, options); |
| 33 | } |
| 34 | |
| 35 | /** |
| 36 | * Check if this is a quota exceeded error |
nothing calls this directly
no outgoing calls
no test coverage detected