System.err.println("Done.\n");
// test_Exception
System.err.println("Testing test_Exception...");
try {
mri.test_Exception();
fail("test_Exception() should have thrown MyException");
} catch (MyException e) {
System.err.println(e.toString());
}
System.err.println("Done.\n");