PakhomovAlexander commented on code in PR #6205: URL: https://github.com/apache/ignite-3/pull/6205#discussion_r2195692386
########## modules/api/src/main/java/org/apache/ignite/lang/ErrorGroups.java: ########## @@ -756,4 +756,19 @@ public static class Rest { /** Cluster has not yet been initialized or the node is in the process of stopping. */ public static final int CLUSTER_NOT_INIT_ERR = REST_ERR_GROUP.registerErrorCode((short) 1); } + + /** Configuration error group. */ + @ErrorCodeGroup + public static class CommonConfiguration { + public static final ErrorGroup COMMON_CONF_ERR_GROUP = registerGroup("COMMONCFG", (short) 24); + + /** Configuration apply failed. */ + public static final int CONFIGURATION_APPLY_ERR = COMMON_CONF_ERR_GROUP.registerErrorCode((short) 1); + + /** Configuration parse error. */ + public static final int PARSE_CONFIGURATION_ERR = COMMON_CONF_ERR_GROUP.registerErrorCode((short) 2); Review Comment: CONFIGURATION_PARSE_ERR just to be consistent with others -- 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: notifications-unsubscr...@ignite.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org