📄 illegaltransitionexception.java
字号:
package org.jbpm;
/**
* is thrown when the client specifies an illegal transitionName in
* {@link org.jbpm.ExecutionService#startProcessInstance(String, Long, Map, String)}
* or in
* {@link org.jbpm.ExecutionService#endOfState(String, Long, Map, String)}.
*
* <p>Note that null is a valid transition name if exactly one transition is leaving
* the state.
* </p>
*
* <p>In method {@link org.jbpm.ExecutionService#startProcessInstance(String, Long, Map, String)}
* a transitionName is illegal if the start state of the specified process definition
* does not have a leaving transition with that name.
* In method {@link org.jbpm.ExecutionService#endOfState(String, Long, Map, String)}
* a transitionName is illegal if the current state of the token
* does not have a leaving transition with that name.
* </p>
*/
public class IllegalTransitionException extends ExecutionException {
public IllegalTransitionException() { super(); }
public IllegalTransitionException(String msg) { super(msg); }
public IllegalTransitionException(String msg, Throwable cause) { super(msg, cause); }
public IllegalTransitionException(Throwable cause) { super(cause); }
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -