(message: string)
| 36 | */ |
| 37 | export class ImageResizeError extends Error { |
| 38 | constructor(message: string) { |
| 39 | super(message) |
| 40 | this.name = 'ImageResizeError' |
| 41 | } |
| 42 | } |
| 43 | |
| 44 | /** |
nothing calls this directly
no outgoing calls
no test coverage detected