source: trunk/anuga_work/development/2010-projects/anuga_1d/sww-sudi/error.py @ 8427

Last change on this file since 8427 was 8427, checked in by davies, 13 years ago

Adding the trapezoidal channel validation test, and editing the ANUGA manual

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.