(path string)
| 63 | } |
| 64 | |
| 65 | func ErrorCreateFile(path string) error { |
| 66 | return errors.WithStack(&errors.Error{ |
| 67 | Kind: ErrCreateFile, |
| 68 | Message: fmt.Sprintf("%s: unable to create file", path), |
| 69 | }) |
| 70 | } |
| 71 | |
| 72 | func ErrorReadDir(path string) error { |
| 73 | return errors.WithStack(&errors.Error{ |
no test coverage detected