alist/internal/driver/error.go

12 lines
331 B
Go
Raw Normal View History

2022-06-06 13:48:53 +00:00
package driver
import "errors"
var (
ErrorDirNotFound = errors.New("directory not found")
ErrorObjectNotFound = errors.New("object not found")
2022-06-07 14:02:41 +00:00
ErrNotImplement = errors.New("not implement")
ErrNotSupport = errors.New("not support")
ErrRelativePath = errors.New("access using relative path is not allowed")
2022-06-06 13:48:53 +00:00
)