(s fmt.State, verb rune)
| 133 | func (e *werrFmt) Error() string { return fmt.Sprintf("%s: %v", e.msg, e.cause) } |
| 134 | func (e *werrFmt) Unwrap() error { return e.cause } |
| 135 | func (e *werrFmt) Format(s fmt.State, verb rune) { errbase.FormatError(e, s, verb) } |
| 136 | func (e *werrFmt) FormatError(p errbase.Printer) error { |
| 137 | p.Print(e.msg) |
| 138 | if p.Detail() { |
nothing calls this directly
no test coverage detected