Wrap adds the program counter captured in Caller to the error, similar to [Wrap], but relying on previously captured caller inforamtion.
(err error)
| 29 | // Wrap adds the program counter captured in Caller to the error, |
| 30 | // similar to [Wrap], but relying on previously captured caller inforamtion. |
| 31 | func (c Caller) Wrap(err error) error { |
| 32 | return wrap(err, c.callerPC) |
| 33 | } |