diff options
author | Ben Connors <benconnors@outlook.com> | 2019-09-24 22:20:51 -0400 |
---|---|---|
committer | Ben Connors <benconnors@outlook.com> | 2019-09-24 22:22:19 -0400 |
commit | 7f85bd8ed84b23fc4e683ab90fc7babe288f1a27 (patch) | |
tree | 5d0d7439040ace59388cdbbf8e2fd18408f9aa68 /exceptions.py |
Initial commit
- Basic functionality
- Can save/load to XML format (see examples folder)
- Can create and edit fixtures and channels
- Can create and edit Scenes and Audios
- Live updates through callbacks
Diffstat (limited to 'exceptions.py')
-rw-r--r-- | exceptions.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/exceptions.py b/exceptions.py new file mode 100644 index 0000000..1b950e8 --- /dev/null +++ b/exceptions.py @@ -0,0 +1,4 @@ +"""Module containing common exceptions.""" + +class LoadError(Exception): + pass |