How to use the appier.NotFoundError function in appier

To help you get started, we’ve selected a few appier examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github hivesolutions / appier / examples / hello / hello_async.py View on Github external
    @appier.exception_handler(appier.NotFoundError)
    def not_found(self, error):
        return "Not found error"
github hivesolutions / appier / examples / hello / hello.py View on Github external
    @appier.exception_handler(appier.NotFoundError)
    def not_found(self, error):
        return "Not found error"