summaryrefslogtreecommitdiffstats
path: root/back/cmd/authfs/err.go
blob: 7c2b192661e3bc6501ed47b47af3656a993f75d7 (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")
)