1
0
mirror of https://github.com/imgproxy/imgproxy.git synced 2025-06-12 22:27:32 +02:00
Files
imgproxy/vips/errors.go
2025-02-17 22:11:40 +03:00

14 lines
228 B
Go

package vips
import (
"github.com/imgproxy/imgproxy/v3/ierrors"
)
type VipsError string
func newVipsError(msg string) error {
return ierrors.Wrap(VipsError(msg), 2)
}
func (e VipsError) Error() string { return string(e) }