source: javavenv/src/test/resources/throw.py@ 13

Last change on this file since 13 was 13, checked in by bart, 3 years ago

Added java logconverter to add utilities to log results. Fixed
bug in python ProgressTime.

File size: 107 bytes
RevLine 
[13]1
2def deeperror(n):
3 if n>0:
4 deeperror(n-1)
5 raise ValueError("yes this is bad")
6
7deeperror(4)
Note: See TracBrowser for help on using the repository browser.