(self, func_name, api_name)
| 7 | # ApiProxy stuff |
| 8 | class ExportNotFound(RuntimeError): |
| 9 | def __init__(self, func_name, api_name): |
| 10 | self.func_name = func_name |
| 11 | self.api_name = api_name |
| 12 | super(ExportNotFound, self).__init__("Function {0} not found into {1}".format(func_name, api_name)) |
| 13 | |
| 14 | |
| 15 | # PFW Winproxy Exception type |