}
@Test(expected=TestException.class)
public void testAllowedExceptions_Implicit() throws Exception {
Mapper mapper = getMapper(new String[] { "implicitAllowedExceptionsMapping.xml" });
ThrowException to = newInstance(ThrowException.class);
to.setThrowAllowedException("throw me");
mapper.map(to, ThrowExceptionPrime.class);
fail("We should have thrown TestException");
}