1
0
mirror of https://github.com/imgproxy/imgproxy.git synced 2025-12-23 22:11:10 +02:00
Files
imgproxy/vips/errors.go

14 lines
228 B
Go
Raw Permalink Normal View History

package vips
import (
"github.com/imgproxy/imgproxy/v3/ierrors"
)
2025-09-23 20:16:36 +03:00
type VipsError string
func newVipsError(msg string) error {
return ierrors.Wrap(VipsError(msg), 1)
}
func (e VipsError) Error() string { return string(e) }