Source code for kense.exceptions

#!/usr/bin/env python
# -*- coding: utf-8 -*-
# Copyright 2018 Jorge Javier Araya Navarro
# This file is under the MIT License
# Complete text of the license is at LICENSE
""" Custom exceptions for Kense.
"""


[docs]class OptionNotFound(Exception): """Useful for diplaying exceptions in the context of selectable options from Kendo UI widgets. """ pass