| 14 | * Error thrown when one or more images exceed the API size limit. |
| 15 | */ |
| 16 | export class ImageSizeError extends Error { |
| 17 | constructor(oversizedImages: OversizedImage[], maxSize: number) { |
| 18 | let message: string |
| 19 | const firstImage = oversizedImages[0] |
nothing calls this directly
no outgoing calls
no test coverage detected