Source code for flask_via.exceptions

# -*- coding: utf-8 -*-

"""
flask_via.exceptions
--------------------

Custom exceptions which can be thrown by ``Flask-Via``.
"""


[docs]class ImproperlyConfigured(Exception): """ Raised in the event ``Flask-Via`` has not been properly configured .. versionadded: 2014.05.19 """ pass

http://thisissoon.com

Related Topics