We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d50abca commit ca68ca1Copy full SHA for ca68ca1
src/main/java/com/ibm/eventstreams/connect/mqsink/JMSWriter.java
@@ -170,7 +170,7 @@ else if (connectionMode.equals(MQSinkConnector.CONFIG_VALUE_MQ_CONNECTION_MODE_B
170
builder = c.newInstance();
171
builder.configure(props);
172
}
173
- catch (ClassNotFoundException | IllegalAccessException | InstantiationException | NullPointerException exc) {
+ catch (ClassNotFoundException | ClassCastException | IllegalAccessException | InstantiationException | NullPointerException exc) {
174
log.error("Could not instantiate message builder {}", builderClass);
175
throw new ConnectException("Could not instantiate message builder", exc);
176
0 commit comments