Community Tip - When posting, your subject should be specific and summarize your question. Here are some additional tips on asking a great question. 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);
}
