Files
copier/errors.go
2025-09-24 15:12:51 +08:00

10 lines
275 B
Go

package copier
import "errors"
var (
ErrInvalidCopyDestination = errors.New("copy destination must be non-nil and addressable")
ErrInvalidCopyFrom = errors.New("copy from must be non-nil and addressable")
ErrNotSupported = errors.New("not supported")
)