summaryrefslogtreecommitdiffstats
path: root/back/cmd/authfs/err.go
blob: 81da2bac1c26058ea6cfbd119e248b6535fa8e6f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
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")
)