📄 authorizationexception.java
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -