AMashenkov commented on a change in pull request #484:
URL: https://github.com/apache/ignite-3/pull/484#discussion_r764655640



##########
File path: 
modules/api/src/main/java/org/apache/ignite/lang/ColumnNotFoundException.java
##########
@@ -0,0 +1,16 @@
+package org.apache.ignite.lang;
+
+/**
+ * Exception is thrown when appropriate column is not found.
+ */
+public class ColumnNotFoundException extends IgniteException {
+    /**
+     * Create a new exception with given column name.
+     *
+     * @param name Column name.
+     * @param fullName Schema and table name.
+     */
+    public ColumnNotFoundException(String name, String fullName) {
+        super(LoggerMessageHelper.format("Column '{}' does not exist in table 
'{}'", name));

Review comment:
       Second arg missed.




-- 
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]


Reply via email to