(op string, path string, statusCode int)
| 33 | } |
| 34 | |
| 35 | func newPathError(op string, path string, statusCode int) error { |
| 36 | return &os.PathError{ |
| 37 | Op: op, |
| 38 | Path: path, |
| 39 | Err: StatusError{statusCode}, |
| 40 | } |
| 41 | } |
| 42 | |
| 43 | func newPathErrorErr(op string, path string, err error) error { |
| 44 | return &os.PathError{ |
no outgoing calls
no test coverage detected