(path string)
| 42 | ) |
| 43 | |
| 44 | func ErrorCreateDir(path string) error { |
| 45 | return errors.WithStack(&errors.Error{ |
| 46 | Kind: ErrCreateDir, |
| 47 | Message: fmt.Sprintf("%s: unable to create directory", path), |
| 48 | }) |
| 49 | } |
| 50 | |
| 51 | func ErrorDeleteDir(path string) error { |
| 52 | return errors.WithStack(&errors.Error{ |
no test coverage detected