source:
inundation/utilities/anuga_exceptions.py
@
2950
Last change on this file since 2950 was 2942, checked in by , 19 years ago | |
---|---|
File size: 251 bytes |
Rev | Line | |
---|---|---|
[2617] | 1 | """Exceptions used by ANUGA |
2 | """ | |
3 | ||
[2942] | 4 | import exceptions |
5 | class TitleError(exceptions.IOError): pass | |
6 | class ParsingError(exceptions.IOError): pass | |
[2617] | 7 | |
[2942] | 8 | |
[2617] | 9 | class ANUGAError(Exception): |
10 | def __init__(self, args=None): | |
11 | self.args = args | |
12 |
Note: See TracBrowser
for help on using the repository browser.