()
| 205 | var _ errbase.Formatter = (*werrFmt)(nil) |
| 206 | |
| 207 | func (e *werrFmt) Error() string { return fmt.Sprintf("%s: %v", e.msg, e.cause) } |
| 208 | func (e *werrFmt) Unwrap() error { return e.cause } |
| 209 | func (e *werrFmt) Format(s fmt.State, verb rune) { errbase.FormatError(e, s, verb) } |
| 210 | func (e *werrFmt) FormatError(p errbase.Printer) error { |
no outgoing calls
no test coverage detected