我有一个自定义的异常类customexception,调用它时需要三个参数(两个整数和字符串)。
目前在camel.xml文件中,我有:
<onException>
<exception>org.apache.camel.http.common.HttpOperationFailedException</exception>
<throwException exceptionType="package.path.of.customException" message="custom message" />
</onException>
抛出异常时,我想要的特定变量为null。如何在camel中设置该变量?有可能吗?
1条答案
按热度按时间mw3dktmi1#
您可以将异常定义为具有自定义构造函数参数和属性值的单独bean,并从中引用它
throwException
: