()
| 214 | type ServerError string |
| 215 | |
| 216 | func (e ServerError) Error() string { return string(e) } |
| 217 | func (ServerError) HTTPCode() int { return http.StatusInternalServerError } |
| 218 | |
| 219 | // MustGet returns a non-empty GET (or HEAD) parameter param and panics |
no outgoing calls