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