Return-Path: X-Original-To: apmail-cassandra-commits-archive@www.apache.org Delivered-To: apmail-cassandra-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 25268101FF for ; Thu, 23 Jan 2014 23:20:36 +0000 (UTC) Received: (qmail 2831 invoked by uid 500); 23 Jan 2014 23:20:34 -0000 Delivered-To: apmail-cassandra-commits-archive@cassandra.apache.org Received: (qmail 2776 invoked by uid 500); 23 Jan 2014 23:20:34 -0000 Mailing-List: contact commits-help@cassandra.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@cassandra.apache.org Delivered-To: mailing list commits@cassandra.apache.org Received: (qmail 2766 invoked by uid 99); 23 Jan 2014 23:20:33 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 23 Jan 2014 23:20:33 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id 85C168BDB2A; Thu, 23 Jan 2014 23:20:33 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: jbellis@apache.org To: commits@cassandra.apache.org Date: Thu, 23 Jan 2014 23:20:33 -0000 Message-Id: <702d196972fa4f5ebfd128505d99d1c5@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [1/3] git commit: include cause of configuration exception that Shouldn't Happen Updated Branches: refs/heads/trunk 5b995cd78 -> 630d5ee8d include cause of configuration exception that Shouldn't Happen Project: http://git-wip-us.apache.org/repos/asf/cassandra/repo Commit: http://git-wip-us.apache.org/repos/asf/cassandra/commit/9771cea2 Tree: http://git-wip-us.apache.org/repos/asf/cassandra/tree/9771cea2 Diff: http://git-wip-us.apache.org/repos/asf/cassandra/diff/9771cea2 Branch: refs/heads/trunk Commit: 9771cea2186977adf406ad35cb54a10feae69591 Parents: 0eac408 Author: Jonathan Ellis Authored: Fri Jan 24 08:19:49 2014 +0900 Committer: Jonathan Ellis Committed: Fri Jan 24 08:19:49 2014 +0900 ---------------------------------------------------------------------- .../org/apache/cassandra/locator/AbstractReplicationStrategy.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cassandra/blob/9771cea2/src/java/org/apache/cassandra/locator/AbstractReplicationStrategy.java ---------------------------------------------------------------------- diff --git a/src/java/org/apache/cassandra/locator/AbstractReplicationStrategy.java b/src/java/org/apache/cassandra/locator/AbstractReplicationStrategy.java index e4dd422..d2f6085 100644 --- a/src/java/org/apache/cassandra/locator/AbstractReplicationStrategy.java +++ b/src/java/org/apache/cassandra/locator/AbstractReplicationStrategy.java @@ -271,7 +271,7 @@ public abstract class AbstractReplicationStrategy catch (ConfigurationException e) { // If that happens at this point, there is nothing we can do about it. - throw new RuntimeException(); + throw new RuntimeException(e); } }