(
message: string,
url: string,
public readonly code: string,
public readonly statusCode?: number,
options?: { cause?: unknown },
)
| 22 | */ |
| 23 | export class FeedLoadError extends FeedError { |
| 24 | constructor( |
| 25 | message: string, |
| 26 | url: string, |
| 27 | public readonly code: string, |
| 28 | public readonly statusCode?: number, |
| 29 | options?: { cause?: unknown }, |
| 30 | ) { |
| 31 | super(message, url, options); |
| 32 | } |
| 33 | } |
| 34 | |
| 35 | /** |
nothing calls this directly
no outgoing calls
no test coverage detected