Lines Matching refs:errors
8 "errors"
12 // Portable analogs of some common system call errors.
14 ErrInvalid = errors.New("invalid argument") // methods on File will return this error when the receiver is nil
15 ErrPermission = errors.New("permission denied")
16 ErrExist = errors.New("file already exists")
17 ErrNotExist = errors.New("file does not exist")
18 ErrClosed = errors.New("file already closed")
67 // well as some syscall errors.
74 // ErrNotExist as well as some syscall errors.
81 // as some syscall errors.