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