diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2015-06-23 09:28:51 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2015-06-23 09:28:51 -0400 |
commit | 9d6c4cd01740ee13a53abe2dd2fd2a41a605a7a6 (patch) | |
tree | b1762bdb5858317e7e251b7d018602670bece529 /cbc | |
parent | 3a8198bfb603a6aaf3cc795f753d741530bdcb51 (diff) | |
download | cbc-9d6c4cd01740ee13a53abe2dd2fd2a41a605a7a6.tar.gz |
Initial commit of exceptions.py
Diffstat (limited to 'cbc')
-rwxr-xr-x | cbc/exceptions.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/cbc/exceptions.py b/cbc/exceptions.py new file mode 100755 index 0000000..7acf55f --- /dev/null +++ b/cbc/exceptions.py @@ -0,0 +1,5 @@ +class IncompleteEnv(Exception):
+ pass
+
+class MetaDataError(Exception):
+ pass
\ No newline at end of file |