Error satisfies the core error interface for pluginError.
()
| 20 | |
| 21 | // Error satisfies the core error interface for pluginError. |
| 22 | func (e *pluginError) Error() string { |
| 23 | return e.cause.Error() |
| 24 | } |
| 25 | |
| 26 | // Unwrap provides compatibility for Go 1.13 error chains. |
| 27 | func (e *pluginError) Unwrap() error { |
no outgoing calls