source: inundation/utilities/anuga_exceptions.py @ 2950

Last change on this file since 2950 was 2942, checked in by duncan, 19 years ago

changing errors thrown by geo_ref. adding tests to geospatial

File size: 251 bytes
Line 
1"""Exceptions used by ANUGA
2"""
3
4import exceptions
5class TitleError(exceptions.IOError): pass
6class ParsingError(exceptions.IOError): pass
7
8
9class ANUGAError(Exception):
10    def __init__(self, args=None):
11        self.args = args
12       
Note: See TracBrowser for help on using the repository browser.