Files
drive/apps/backend/internal/virtualfs/err.go

12 lines
388 B
Go
Raw Normal View History

2025-11-27 20:49:58 +00:00
package virtualfs
import "errors"
var (
2025-12-17 22:59:18 +00:00
ErrNodeNotFound = errors.New("node not found")
ErrNodeConflict = errors.New("node conflict")
ErrUnsupportedOperation = errors.New("unsupported operation")
ErrCursorMismatchedOrderField = errors.New("cursor mismatched order field")
ErrCursorMismatchedDirection = errors.New("cursor mismatched direction")
2025-11-27 20:49:58 +00:00
)