blob: 4f4dbbf7fdd0c75dc800daa9658d93ac31339509 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
package main
import "errors"
var (
ErrFileExist = errors.New("file already exists")
ErrFileNotExist = errors.New("file does not exist")
ErrFidExist = errors.New("fid already exists")
ErrFidNotExist = errors.New("fid does not exist")
ErrPerm = errors.New("permission denied")
)
|