()
| 117 | } |
| 118 | |
| 119 | func (e Error) Error() string { |
| 120 | return fmt.Sprintf("%d - %s - %s", e.Code, e.Detail, e.Source) |
| 121 | } |
| 122 | |
| 123 | func writeError(w http.ResponseWriter, accept string, err error, options *RouteOptions) { |
| 124 | var e Error |
no outgoing calls