Files
steamcache2/vfs/vfserror/vfserror.go
2025-01-22 17:49:22 -06:00

15 lines
349 B
Go

package vfserror
import "errors"
var (
// ErrUnreachable is returned when a code path is unreachable.
ErrUnreachable = errors.New("unreachable")
// ErrNotFound is returned when a key is not found.
ErrNotFound = errors.New("vfs: key not found")
// ErrDiskFull is returned when the disk is full.
ErrDiskFull = errors.New("vfs: disk full")
)