diff options
author | Olivier Gayot <olivier.gayot@sigexec.com> | 2020-11-02 00:03:20 +0100 |
---|---|---|
committer | Olivier Gayot <olivier.gayot@sigexec.com> | 2020-11-02 00:03:20 +0100 |
commit | 1f18b5053c44d418e3059a789cb9bdf40f3f9b10 (patch) | |
tree | b3719b088cd22f5585a157ce97d9deaf754bcc43 /swiftstory/exception.py | |
parent | bb062fcd972fb0a281fcdd743647f22d0852e737 (diff) |
also add the JoinError exception type
Signed-off-by: Olivier Gayot <olivier.gayot@sigexec.com>
Diffstat (limited to 'swiftstory/exception.py')
-rw-r--r-- | swiftstory/exception.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/swiftstory/exception.py b/swiftstory/exception.py index ac2a074..764289f 100644 --- a/swiftstory/exception.py +++ b/swiftstory/exception.py @@ -4,3 +4,6 @@ class WrongAction(Exception): class UnsupportedLanguage(Exception): pass + +class JoinError(Exception): + pass |