Message returns the error message for this context.
()
| 34 | |
| 35 | // Message returns the error message for this context. |
| 36 | func (ctx *Context) Message() string { |
| 37 | ctx.RLock() |
| 38 | defer ctx.RUnlock() |
| 39 | return ctx.message |
| 40 | } |
| 41 | |
| 42 | // Reset resets this context instance to a neutral state. |
| 43 | func (ctx *Context) Reset() { |
no outgoing calls