Merge pull request #524 from r0fls/exception-list

allow exceptions to be a list
This commit is contained in:
Raphael Deem
2017-03-10 00:35:38 -08:00
committed by GitHub
2 changed files with 20 additions and 1 deletions

View File

@@ -227,7 +227,11 @@ class Sanic:
def response(handler):
for exception in exceptions:
self.error_handler.add(exception, handler)
if isinstance(exception, (tuple, list)):
for e in exception:
self.error_handler.add(e, handler)
else:
self.error_handler.add(exception, handler)
return handler
return response