source: trunk/anuga_work/development/carrier_greenspan/error.py

Last change on this file was 8594, checked in by mungkasi, 11 years ago

Uploading the 1D Carrier-Greenspan test for 2D model.

File size: 192 bytes
Line 
1## module error
2''' err(string).
3    Prints 'string' and terminates program.
4'''   
5import sys
6def 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.