Return-Path: X-Original-To: apmail-geode-commits-archive@minotaur.apache.org Delivered-To: apmail-geode-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 0175C18A07 for ; Thu, 5 Nov 2015 20:35:59 +0000 (UTC) Received: (qmail 93641 invoked by uid 500); 5 Nov 2015 20:35:58 -0000 Delivered-To: apmail-geode-commits-archive@geode.apache.org Received: (qmail 93604 invoked by uid 500); 5 Nov 2015 20:35:58 -0000 Mailing-List: contact commits-help@geode.incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@geode.incubator.apache.org Delivered-To: mailing list commits@geode.incubator.apache.org Received: (qmail 93595 invoked by uid 99); 5 Nov 2015 20:35:58 -0000 Received: from Unknown (HELO spamd1-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 05 Nov 2015 20:35:58 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd1-us-west.apache.org (ASF Mail Server at spamd1-us-west.apache.org) with ESMTP id 5C472CC2AF for ; Thu, 5 Nov 2015 20:35:58 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd1-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: 0.79 X-Spam-Level: X-Spam-Status: No, score=0.79 tagged_above=-999 required=6.31 tests=[KAM_ASCII_DIVIDERS=0.8, T_RP_MATCHES_RCVD=-0.01] autolearn=disabled Received: from mx1-us-west.apache.org ([10.40.0.8]) by localhost (spamd1-us-west.apache.org [10.40.0.7]) (amavisd-new, port 10024) with ESMTP id JKTeoHnNIhvO for ; Thu, 5 Nov 2015 20:35:43 +0000 (UTC) Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx1-us-west.apache.org (ASF Mail Server at mx1-us-west.apache.org) with SMTP id 3764326B70 for ; Thu, 5 Nov 2015 20:35:39 +0000 (UTC) Received: (qmail 90263 invoked by uid 99); 5 Nov 2015 20:35:39 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 05 Nov 2015 20:35:39 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 0443DE5466; Thu, 5 Nov 2015 20:35:39 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: bschuchardt@apache.org To: commits@geode.incubator.apache.org Date: Thu, 05 Nov 2015 20:36:00 -0000 Message-Id: <4763738236eb4f72a4adffe2b104f644@git.apache.org> In-Reply-To: <20c4b29bd8ec4fe69e28b9bc027a7f1a@git.apache.org> References: <20c4b29bd8ec4fe69e28b9bc027a7f1a@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [23/50] [abbrv] incubator-geode git commit: Include nested exception Include nested exception Project: http://git-wip-us.apache.org/repos/asf/incubator-geode/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-geode/commit/030853b6 Tree: http://git-wip-us.apache.org/repos/asf/incubator-geode/tree/030853b6 Diff: http://git-wip-us.apache.org/repos/asf/incubator-geode/diff/030853b6 Branch: refs/heads/feature/GEODE-77 Commit: 030853b6c0a3983892b1326f0e2f442d74dcc13b Parents: c9df12a Author: Kirk Lund Authored: Fri Oct 23 15:14:03 2015 -0700 Committer: Kirk Lund Committed: Thu Oct 29 13:04:45 2015 -0700 ---------------------------------------------------------------------- .../java/com/gemstone/gemfire/distributed/LocatorLauncher.java | 2 +- .../main/java/com/gemstone/gemfire/distributed/ServerLauncher.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/030853b6/gemfire-core/src/main/java/com/gemstone/gemfire/distributed/LocatorLauncher.java ---------------------------------------------------------------------- diff --git a/gemfire-core/src/main/java/com/gemstone/gemfire/distributed/LocatorLauncher.java b/gemfire-core/src/main/java/com/gemstone/gemfire/distributed/LocatorLauncher.java index 5fdd2c7..6846905 100644 --- a/gemfire-core/src/main/java/com/gemstone/gemfire/distributed/LocatorLauncher.java +++ b/gemfire-core/src/main/java/com/gemstone/gemfire/distributed/LocatorLauncher.java @@ -1906,7 +1906,7 @@ public final class LocatorLauncher extends AbstractLauncher { gfJsonObject.getString(JSON_MEMBERNAME)); } catch (GfJsonException e) { - throw new IllegalArgumentException("Unable to create LocatorStatus from JSON: ".concat(json)); + throw new IllegalArgumentException("Unable to create LocatorStatus from JSON: ".concat(json), e); } } http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/030853b6/gemfire-core/src/main/java/com/gemstone/gemfire/distributed/ServerLauncher.java ---------------------------------------------------------------------- diff --git a/gemfire-core/src/main/java/com/gemstone/gemfire/distributed/ServerLauncher.java b/gemfire-core/src/main/java/com/gemstone/gemfire/distributed/ServerLauncher.java index 4ff0c62..c991cc1 100644 --- a/gemfire-core/src/main/java/com/gemstone/gemfire/distributed/ServerLauncher.java +++ b/gemfire-core/src/main/java/com/gemstone/gemfire/distributed/ServerLauncher.java @@ -2484,7 +2484,7 @@ public final class ServerLauncher extends AbstractLauncher { } catch (GfJsonException e) { // TODO: or should we return OFFLINE? - throw new IllegalArgumentException("Unable to create ServerStatus from JSON: " + json); + throw new IllegalArgumentException("Unable to create ServerStatus from JSON: " + json, e); } }