newPluginError creates a new pluginError, analogous to errors.Errorf.
(msg string, args ...any)
| 42 | // newPluginError creates a new pluginError, analogous to |
| 43 | // errors.Errorf. |
| 44 | func newPluginError(msg string, args ...any) error { |
| 45 | return &pluginError{cause: fmt.Errorf(msg, args...)} |
| 46 | } |
no outgoing calls
searching dependent graphs…