(args []any)
| 94 | } |
| 95 | |
| 96 | func firstErrorArg(args []any) error { |
| 97 | for _, arg := range args { |
| 98 | if err, ok := arg.(error); ok { |
| 99 | return err |
| 100 | } |
| 101 | } |
| 102 | return nil |
| 103 | } |
| 104 | |
| 105 | // baseMissingFileIOError reports a broken runtime wiring: a command that needs |
| 106 | // local file access was constructed without a FileIO provider. The user cannot |
no outgoing calls
no test coverage detected