serializerexception.java
来自「一个java工作流引擎」· Java 代码 · 共 20 行
JAVA
20 行
package org.jbpm.model.definition.impl;
import org.jbpm.util.lang.*;
/**
* is thrown when a serializer throws a RuntimeException,
* the transaction managers convert this (runtime-) exception into
* a DelegationException that is thrown to the jBpm client.
* The reason for not throwing DelegationExceptions internally
* it because variables must be settable from within delegations
* and we don't want to force the delegations to catch the highly
* unlikely DelegationExceptions.
*/
public class SerializerException extends ChainedRuntimeException {
public SerializerException(String msg, Throwable cause) {
super(msg, cause);
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?