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 |
Line | |
---|---|
1 | """Exceptions used by ANUGA |
2 | """ |
3 | |
4 | import exceptions |
5 | class TitleError(exceptions.IOError): pass |
6 | class ParsingError(exceptions.IOError): pass |
7 | |
8 | |
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.