(self, api, api_function, catch_exceptions=False)
| 437 | return callable_method |
| 438 | |
| 439 | def _create_interface(self, api, api_function, catch_exceptions=False): |
| 440 | interface = hug.interface.ExceptionRaised(self.route, api_function, catch_exceptions) |
| 441 | return (interface, api_function) |
| 442 | |
| 443 | |
| 444 | class URLRouter(HTTPRouter): |