ygerzhedovich commented on code in PR #1831:
URL: https://github.com/apache/ignite-3/pull/1831#discussion_r1147594459
##########
modules/sql-engine/src/main/java/org/apache/ignite/internal/sql/engine/property/PropertyNotFound.java:
##########
@@ -15,24 +15,22 @@
* limitations under the License.
*/
-package org.apache.ignite.internal.catalog.commands;
+package org.apache.ignite.internal.sql.engine.property;
+
+import static org.apache.ignite.lang.IgniteStringFormatter.format;
/**
- * DROP TABLE statement.
+ * Exception that is thrown by {@link PropertiesHolder} if given property
+ * is not fount in the holder.
+ *
+ * @see PropertiesHolder
*/
-public class DropTableParams extends AbstractTableCommandParams {
- private static final long serialVersionUID = 1359515719066409410L;
+public class PropertyNotFound extends RuntimeException {
- public static Builder builder() {
- return new Builder();
- }
+ private static final long serialVersionUID = 4651104853616619936L;
- /**
- * Parameters builder.
- */
- public static class Builder extends AbstractBuilder<DropTableParams,
Builder> {
Review Comment:
why not PropertyNotFoundException ?
--
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]