diff options
author | Aaron LI <aaronly.me@outlook.com> | 2016-11-20 18:48:21 +0800 |
---|---|---|
committer | Aaron LI <aaronly.me@outlook.com> | 2016-11-20 18:48:21 +0800 |
commit | 484bc9bbfdcf434573ef70c1c4be2976af7fce49 (patch) | |
tree | d667aa6b7ca9659a8dea10df0f681288399a1106 /fg21sim/errors.py | |
parent | b325bae3528fe9f2dcc86809a77a2e9cf5876d1b (diff) | |
download | fg21sim-484bc9bbfdcf434573ef70c1c4be2976af7fce49.tar.bz2 |
Add "products.py" to manager and manipulate the simulation products
The class "Products" may build the manifest for the simulation products,
and can manage/manipulate this manifest.
Diffstat (limited to 'fg21sim/errors.py')
-rw-r--r-- | fg21sim/errors.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/fg21sim/errors.py b/fg21sim/errors.py index 6138127..c99decf 100644 --- a/fg21sim/errors.py +++ b/fg21sim/errors.py @@ -9,3 +9,8 @@ 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 |