Files
alist/internal/errs/errors.go

17 lines
401 B
Go
Raw Normal View History

2022-06-23 15:57:10 +08:00
package errs
2022-06-06 21:48:53 +08:00
2022-06-15 19:10:11 +08:00
import (
"errors"
)
2022-06-06 21:48:53 +08:00
var (
2022-06-23 16:09:22 +08:00
NotImplement = errors.New("not implement")
NotSupport = errors.New("not support")
RelativePath = errors.New("access using relative path is not allowed")
2022-06-23 15:57:10 +08:00
2022-07-10 14:45:39 +08:00
MoveBetweenTwoStorages = errors.New("can't move files between two storages, try to copy")
2022-06-23 16:03:27 +08:00
UploadNotSupported = errors.New("upload not supported")
MetaNotFound = errors.New("meta not found")
2022-06-06 21:48:53 +08:00
)