summaryrefslogtreecommitdiff
path: root/alot/settings/errors.py
blob: baf794ff8fc239a138a51e4e53fc1fc6066403b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# Copyright (C) 2011-2012  Patrick Totzke <patricktotzke@gmail.com>
# This file is released under the GNU GPL, version 3 or a later revision.
# For further details see the COPYING file


class ConfigError(Exception):
    """could not parse user config"""
    pass


class NoMatchingAccount(ConfigError):
    """No account matching requirements found."""
    pass