authorizationexception.java
来自「一个java工作流引擎」· Java 代码 · 共 17 行
JAVA
17 行
package org.jbpm;
/**
* is an {@link ExecutionException} that is thrown when an swimlane tries to
* perform an operation that is not permitted. This exception can be thrown
* from method {@link ExecutionService#endOfState(String, Long, Map, String)}
* when configuration jbpm.check.swimlane is set to true (see {@link JbpmConfiguration}
*/
public class AuthorizationException extends ExecutionException{
public AuthorizationException() {}
public AuthorizationException(String msg) {super(msg);}
public AuthorizationException(Throwable cause) {super(cause);}
public AuthorizationException(String msg, Throwable cause) {super(msg, cause);}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?