(
message: string,
url: string,
public readonly details?: string,
options?: { cause?: unknown },
)
| 37 | */ |
| 38 | export class FeedValidationError extends FeedError { |
| 39 | constructor( |
| 40 | message: string, |
| 41 | url: string, |
| 42 | public readonly details?: string, |
| 43 | options?: { cause?: unknown }, |
| 44 | ) { |
| 45 | super(message, url, options); |
| 46 | } |
| 47 | } |
| 48 | |
| 49 | /** |
nothing calls this directly
no outgoing calls
no test coverage detected