2627282930313233343536
*/ public class ExceptionTestMapper { public Long toLong(Integer size) throws TestException1, TestException2 { if ( size == 1 ) { throw new TestException1(); } else if ( size == 2 ) { throw new TestException2(); } return new Long(size);