makes Tester3D exit with error if exception is caught

This commit is contained in:
Brendan Haines 2015-05-08 21:14:47 -06:00
parent 0c4ff1d82f
commit 2482042595

View File

@ -75,6 +75,7 @@ class Tester3D {
}
catch(Exception e) {
System.out.print("Whoops! It didn't work!\n");
System.exit(1);
}
}