Error returns the formatted configuration error.
()
| 29 | |
| 30 | // Error returns the formatted configuration error. |
| 31 | func (pe ConfigParseError) Error() string { |
| 32 | return fmt.Sprintf("While parsing config: %s", pe.err.Error()) |
| 33 | } |
| 34 | |
| 35 | // Unwrap returns the wrapped error. |
| 36 | func (pe ConfigParseError) Unwrap() error { |
no outgoing calls