Community Tip - Did you know you can set a signature that will be added to all your posts? Set it here! X
I have used following in transition without issues.
java.lang.Exception e = new Exception("Please make sure the XYZ is checked in before completing task");
if(wt.vc.wip.WorkInProgressHelper.isCheckedOut((wt.vc.wip.Workable)primaryBusinessObject)){
result=false;
throw new wt.workflow.engine.FailedTransitionException(e);
}
