aboutsummaryrefslogtreecommitdiffstats
path: root/fg21sim/errors.py
blob: c99decf74746c83d90254f684784c75fbf78fac4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# Copyright (c) 2016 Weitian LI <liweitianux@live.com>
# MIT license

"""
Custom errors/exceptions.
"""


class ConfigError(Exception):
    """Could not parse user configurations"""
    pass


class ManifestError(Exception):
    """Errors when build and/or manipulate the products manifest"""
    pass