source:
inundation/utilities/anuga_exceptions.py
@
3290
Last change on this file since 3290 was 3135, checked in by duncan, 18 years ago | |
---|---|
File size: 295 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 | class ShapeError(exceptions.IOError): pass |
8 | |
9 | |
10 | class ANUGAError(Exception): |
11 | def __init__(self, args=None): |
12 | self.args = args |
13 |
Note: See TracBrowser
for help on using the repository browser.