inveniosoftware / flask-resources

REST APIs for Flask
https://flask-resources.readthedocs.io
MIT License
3 stars 21 forks source link

global: improve serializer / error handling + release #89

Closed fenekku closed 3 years ago

fenekku commented 3 years ago

This PR fixes 2 things:

class CustomResourceConfig(ResourceConfig):
    error_map = {
        **ResourceConfig.error_map,
        CustomException: custom_handler
    }