source:
trunk/anuga_work/development/carrier_greenspan/error.py
@
8990
Last change on this file since 8990 was 8594, checked in by , 12 years ago | |
---|---|
File size: 192 bytes |
Line | |
---|---|
1 | ## module error |
2 | ''' err(string). |
3 | Prints 'string' and terminates program. |
4 | ''' |
5 | import sys |
6 | def err(string): |
7 | print string |
8 | raw_input('Press return to exit') |
9 | sys.exit() |
Note: See TracBrowser
for help on using the repository browser.