Skip to content

Commit 585e27d

Browse files
Fix exception message
1 parent bf7c580 commit 585e27d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

kafka-connect-fitbit-source/src/main/java/org/radarbase/connect/rest/fitbit/FitbitRestSourceConnectorConfig.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ public FitbitRestSourceConnectorConfig(ConfigDef config, Map<String, String> par
126126
}
127127
} catch (IllegalAccessException | InstantiationException
128128
| InvocationTargetException | NoSuchMethodException | ClassNotFoundException e) {
129-
throw new ConnectException("Invalid class for: " + SOURCE_PAYLOAD_CONVERTER_CONFIG, e);
129+
throw new ConnectException("Invalid class(es) for: " + FITBIT_USER_REPOSITORIES_CONFIG, e);
130130
}
131131

132132
String credentialString = getFitbitClient() + ":" + getFitbitClientSecret();

0 commit comments

Comments
 (0)