TAJO-1414: Two RemoteException in rpc module Closes #435
Signed-off-by: Jihun Kang <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/tajo/repo Commit: http://git-wip-us.apache.org/repos/asf/tajo/commit/5260c1e0 Tree: http://git-wip-us.apache.org/repos/asf/tajo/tree/5260c1e0 Diff: http://git-wip-us.apache.org/repos/asf/tajo/diff/5260c1e0 Branch: refs/heads/index_support Commit: 5260c1e064e09f14b686144bdfc136fe76e01f4d Parents: 797138e Author: navis.ryu <[email protected]> Authored: Fri Mar 20 11:57:42 2015 +0900 Committer: Jihun Kang <[email protected]> Committed: Fri Mar 20 11:57:42 2015 +0900 ---------------------------------------------------------------------- CHANGES | 3 ++ .../org/apache/tajo/rpc/RemoteException.java | 37 -------------------- 2 files changed, 3 insertions(+), 37 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/tajo/blob/5260c1e0/CHANGES ---------------------------------------------------------------------- diff --git a/CHANGES b/CHANGES index fc18306..bac5461 100644 --- a/CHANGES +++ b/CHANGES @@ -35,6 +35,9 @@ Release 0.11.0 - unreleased BUG FIXES + TAJO-1414: Two RemoteException in rpc module. + (Contributed by navis. Committed by jihun) + TAJO-1368: Exceptions during processing nested union queries. (jihun) http://git-wip-us.apache.org/repos/asf/tajo/blob/5260c1e0/tajo-rpc/tajo-rpc-protobuf/src/main/java/org/apache/tajo/rpc/RemoteException.java ---------------------------------------------------------------------- diff --git a/tajo-rpc/tajo-rpc-protobuf/src/main/java/org/apache/tajo/rpc/RemoteException.java b/tajo-rpc/tajo-rpc-protobuf/src/main/java/org/apache/tajo/rpc/RemoteException.java deleted file mode 100644 index 30c110d..0000000 --- a/tajo-rpc/tajo-rpc-protobuf/src/main/java/org/apache/tajo/rpc/RemoteException.java +++ /dev/null @@ -1,37 +0,0 @@ -/** - * 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.tajo.rpc; - -public class RemoteException extends RuntimeException { - public RemoteException() { - super(); - } - - public RemoteException(String message) { - super(message); - } - - public RemoteException(Throwable t) { - super(t); - } - - public RemoteException(String message, Throwable t) { - super(message, t); - } -}
