91011121314151617181920
*/ public class Defect140Test extends ActiveJDBCTest { @Test public void shouldNotWrapDBException(){ Meal m = new Meal(); try{ m.saveIt(); }catch(DBException e){ the(e.getCause() instanceof DBException).shouldBeFalse(); } }