summaryrefslogtreecommitdiffstats
path: root/back/cmd/authfs/err.go
blob: a1e62f8f23a8df2335096616a532159cdced0ea5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package main

import "errors"

var (
	ErrCreateNonDir = errors.New("cannot create in non-directory")
	ErrFidExist     = errors.New("fid already exists")
	ErrFidNotExist  = errors.New("fid does not exist")
	ErrFileExist    = errors.New("file already exists")
	ErrFileNotExist = errors.New("file does not exist")
	ErrNewfidExist  = errors.New("newfid already exists")
	ErrPerm         = errors.New("permission denied")
	ErrWalkNonDir   = errors.New("cannot walk in non-directory")
)