Newer
Older
ldapcherry / ldapcherry / exceptions.py
@kakwa kakwa on 16 Apr 2015 283 bytes basic skeleton for web application
# -*- coding: utf-8 -*-
# vim:set expandtab tabstop=4 shiftwidth=4:
#
# The MIT License (MIT)
# LdapCherry
# Copyright (c) 2014 Carpentier Pierre-Francois

class MissingParameter(Exception):
    def __init__(self, section, key):
        self.section = section
        self.key = key