Skip to content
Permalink
main
Go to file
1 contributor
18 lines (15 sloc) 485 Bytes
/**
*
*/
package com.smbc.jimuwf.saimu.jisutil.commonstatuscheck.ap;
public class FrontStatusCheckAnser extends StatusCheckChain {
@Override
protected void privateCheck(WorkFlowInfo data) throws CheckException {
// フロント最終区分が1
if ("1".equals(data.getFront_Saisyu_KBN())) {
CheckException err = new CheckException("MIJS555W");
err.setWorkFrowInfo(data);
throw err;
}
}
}