(msg string)
| 48 | } |
| 49 | |
| 50 | func newPluginError(msg string) error { |
| 51 | return &pluginError{innerErr: errors.New(msg)} |
| 52 | } |
| 53 | |
| 54 | // ContainsPluginError checks if the provided error chain contains a plugin error. |
| 55 | func ContainsPluginError(err error) bool { |
no outgoing calls
no test coverage detected