Unwrap returns fs.ErrNotExist.
()
| 71 | |
| 72 | // Unwrap returns fs.ErrNotExist. |
| 73 | func (i *ImportNotExistError) Unwrap() error { |
| 74 | if i == nil { |
| 75 | return nil |
| 76 | } |
| 77 | return fs.ErrNotExist |
| 78 | } |
| 79 | |
| 80 | // ModuleCycleError is the error returned if a cycle is detected in module dependencies. |
| 81 | type ModuleCycleError struct { |