()
| 35 | } |
| 36 | |
| 37 | func (ec *ErrorContext) StatusCode() int { |
| 38 | if ec.statusCode <= 0 { |
| 39 | return 500 |
| 40 | } |
| 41 | |
| 42 | return ec.statusCode |
| 43 | } |
| 44 | |
| 45 | func (ec *ErrorContext) PublicMessage() string { |
| 46 | if len(ec.publicMsg) == 0 { |
nothing calls this directly
no outgoing calls
no test coverage detected