blob: 71d0da2f1397b1479187d69201073aff246d1407 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
"""
Custom exceptions used throughout the project.
"""
class AddressException(Exception):
"""
There was a problem with an address. Maybe it was out of range or invalid.
"""
class TextScriptException(Exception):
"""
TextScript encountered an inconsistency or problem.
"""
|