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