(s fmt.State, verb rune)
| 300 | func (e *werrFmt) Error() string { return fmt.Sprintf("%s: %v", e.msg, e.cause) } |
| 301 | func (e *werrFmt) Unwrap() error { return e.cause } |
| 302 | func (e *werrFmt) Format(s fmt.State, verb rune) { errbase.FormatError(e, s, verb) } |
| 303 | func (e *werrFmt) SafeFormatError(p errbase.Printer) error { |
| 304 | p.Print(e.msg) |
| 305 | if p.Detail() { |
nothing calls this directly
no test coverage detected