mirror of
https://github.com/imgproxy/imgproxy.git
synced 2025-06-12 22:27:32 +02:00
14 lines
228 B
Go
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) }
|