baseMissingFileIOError reports a broken runtime wiring: a command that needs local file access was constructed without a FileIO provider. The user cannot fix this by changing flags, so it classifies as internal, not validation.
(format string, args ...any)
| 106 | // local file access was constructed without a FileIO provider. The user cannot |
| 107 | // fix this by changing flags, so it classifies as internal, not validation. |
| 108 | func baseMissingFileIOError(format string, args ...any) error { |
| 109 | return errs.NewInternalError(errs.SubtypeFileIO, format, args...) |
| 110 | } |
| 111 | |
| 112 | func baseInputStatError(err error) error { |
| 113 | if err == nil { |