diff options
author | Oliver Poignant <oliver@poignant.se> | 2016-03-06 03:10:49 +0100 |
---|---|---|
committer | Oliver Poignant <oliver@poignant.se> | 2016-03-06 03:10:49 +0100 |
commit | ec1f2a28c902855aa470f8523eea33f8aed6a2b5 (patch) | |
tree | f6d1c7bc0ef697e61d2bb541ceaf93fc34a94b30 /GitAutoDeploy/exceptions.py | |
parent | cb07ff7f12ca09dea3cfa2926a7fa04c7bea9813 (diff) | |
download | Git-Auto-Deploy-ec1f2a28c902855aa470f8523eea33f8aed6a2b5.zip Git-Auto-Deploy-ec1f2a28c902855aa470f8523eea33f8aed6a2b5.tar.gz Git-Auto-Deploy-ec1f2a28c902855aa470f8523eea33f8aed6a2b5.tar.bz2 |
Module based file structure. Separated service specific implementations into their own classes.
Diffstat (limited to 'GitAutoDeploy/exceptions.py')
-rw-r--r-- | GitAutoDeploy/exceptions.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/GitAutoDeploy/exceptions.py b/GitAutoDeploy/exceptions.py new file mode 100644 index 0000000..a4c10c0 --- /dev/null +++ b/GitAutoDeploy/exceptions.py @@ -0,0 +1,3 @@ +class FilterMatchError(Exception): + """Used to describe when a filter does not match a request.""" + pass |