dailai commented on code in PR #6833:
URL: https://github.com/apache/seatunnel/pull/6833#discussion_r1601182253
##########
seatunnel-common/src/main/java/org/apache/seatunnel/common/exception/CommonError.java:
##########
@@ -139,6 +140,14 @@ public static SeaTunnelRuntimeException
convertToConnectorTypeError(
return new SeaTunnelRuntimeException(CONVERT_TO_CONNECTOR_TYPE_ERROR,
params);
}
+ public static SeaTunnelRuntimeException convertToConnectorPropsBlankError(
+ String connector, String props) {
+ Map<String, String> params = new HashMap<>();
+ params.put("connector", connector);
Review Comment:
I think this not need. Because the stack of the exception is already show
the plugintype. Like this:

--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]