diff options
author | Olivier Gayot <olivier.gayot@sigexec.com> | 2020-11-01 23:31:08 +0100 |
---|---|---|
committer | Olivier Gayot <olivier.gayot@sigexec.com> | 2020-11-01 23:47:25 +0100 |
commit | bb062fcd972fb0a281fcdd743647f22d0852e737 (patch) | |
tree | 51b7f8346110172284d324f6a0f6a3a24ad73459 /swiftstory/exception.py | |
parent | 0fca30bbdac79d8d33e152e7e7116c5ffa1356ca (diff) |
Add UnsupportedLanguage exception
Signed-off-by: Olivier Gayot <olivier.gayot@sigexec.com>
Diffstat (limited to 'swiftstory/exception.py')
-rw-r--r-- | swiftstory/exception.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/swiftstory/exception.py b/swiftstory/exception.py index 107e9fe..ac2a074 100644 --- a/swiftstory/exception.py +++ b/swiftstory/exception.py @@ -1,2 +1,6 @@ class WrongAction(Exception): pass + + +class UnsupportedLanguage(Exception): + pass |