fb-contrib icon indicating copy to clipboard operation
fb-contrib copied to clipboard

with a @Transactional annotation and custom Exception, no report a bug

Open tonglei100 opened this issue 1 year ago • 0 comments

rule key:fb-contrib:JPAI_NON_SPECIFIED_TRANSACTION_EXCEPTION_HANDLING

this code is not report a bug, with custom Exception:NoMsgException, BizException

@Transactional
public void  orderSubmit(String userCode,List<CbOrderRsVO> waitingCallNextStepList) throws NoMsgException, BizException {...}

this code will report a bug, with Exception

@Transactional
public void  orderSubmit(String userCode,List<CbOrderRsVO> waitingCallNextStepList) throws Exception {...}

tonglei100 avatar Apr 19 '23 01:04 tonglei100