aboutsummaryrefslogtreecommitdiff
path: root/exec/java-exec/src/main/java/org/apache/drill/exec/exception
diff options
context:
space:
mode:
authorHanifi Gunes <hgunes@maprtech.com>2015-04-29 14:54:24 -0700
committerHanifi Gunes <hgunes@maprtech.com>2015-05-11 01:20:26 -0700
commit4689468ef11a70c782f64af451807e1e10cdce65 (patch)
tree7d38c83034657f0bc26a6e8ed60cb8fd168d6465 /exec/java-exec/src/main/java/org/apache/drill/exec/exception
parenta3ec52a721860a966dfa351f719458a200b27cbf (diff)
DRILL-2150: Create an abstraction for repeated value vectors.
Diffstat (limited to 'exec/java-exec/src/main/java/org/apache/drill/exec/exception')
-rw-r--r--exec/java-exec/src/main/java/org/apache/drill/exec/exception/SchemaChangeRuntimeException.java42
1 files changed, 42 insertions, 0 deletions
diff --git a/exec/java-exec/src/main/java/org/apache/drill/exec/exception/SchemaChangeRuntimeException.java b/exec/java-exec/src/main/java/org/apache/drill/exec/exception/SchemaChangeRuntimeException.java
new file mode 100644
index 000000000..f2a7e6391
--- /dev/null
+++ b/exec/java-exec/src/main/java/org/apache/drill/exec/exception/SchemaChangeRuntimeException.java
@@ -0,0 +1,42 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.apache.drill.exec.exception;
+
+import org.apache.drill.common.exceptions.DrillRuntimeException;
+
+public class SchemaChangeRuntimeException extends DrillRuntimeException {
+ public SchemaChangeRuntimeException() {
+ super();
+ }
+
+ public SchemaChangeRuntimeException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
+ super(message, cause, enableSuppression, writableStackTrace);
+ }
+
+ public SchemaChangeRuntimeException(String message, Throwable cause) {
+ super(message, cause);
+ }
+
+ public SchemaChangeRuntimeException(String message) {
+ super(message);
+ }
+
+ public SchemaChangeRuntimeException(Throwable cause) {
+ super(cause);
+ }
+}