4041424344454647484950
* Test the out of bounds exception. */ @Test public final void test() { try { throw new OutOfBoundsException(EXCEPTION_MSG); } catch (OutOfBoundsException e) { LOGGER.debug(e.getMessage()); assertEquals(e.getMessage(), EXCEPTION_MSG); } }