use of org.skife.jdbi.v2.exceptions.TransactionFailedException in project dropwizard by dropwizard.
the class LoggingDBIExceptionMapperTest method testPlainDBIException.
@Test
public void testPlainDBIException() throws Exception {
DBIException dbiException = new TransactionFailedException("Transaction failed for unknown reason");
dbiExceptionMapper.logException(9812, dbiException);
verify(logger).error("Error handling a request: 0000000000002654", dbiException);
}
Aggregations