()
| 397 | } |
| 398 | |
| 399 | func (c *ControllerActivator) parseHTTPErrorHandler() { |
| 400 | if m, ok := c.Type.MethodByName(handleHTTPErrorMethodName); ok { |
| 401 | c.handleHTTPError(m.Name) |
| 402 | } |
| 403 | } |
| 404 | |
| 405 | // register all available, exported methods to handlers if possible. |
| 406 | func (c *ControllerActivator) parseMethods() { |
no test coverage detected