From 2c3268f03ed70d3221eb1642bc99ebb39b12902e Mon Sep 17 00:00:00 2001 From: Aviv Eyal Date: Thu, 28 Aug 2014 10:32:57 -0700 Subject: [PATCH] fix typo in exception handling Test Plan: brake .arcrc, see reasonable error. Reviewers: #blessed_reviewers, epriestley Reviewed By: #blessed_reviewers, epriestley Subscribers: epriestley Differential Revision: https://secure.phabricator.com/D10379 --- src/configuration/ArcanistConfigurationManager.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/configuration/ArcanistConfigurationManager.php b/src/configuration/ArcanistConfigurationManager.php index 9d5ab534..ef9b0b4f 100644 --- a/src/configuration/ArcanistConfigurationManager.php +++ b/src/configuration/ArcanistConfigurationManager.php @@ -200,7 +200,7 @@ final class ArcanistConfigurationManager { $user_config = phutil_json_decode($user_config_data); } catch (PhutilJSONParserException $ex) { throw new PhutilProxyException( - "Your '~/.arcrc' file is not a valid JSON file.". + "Your '~/.arcrc' file is not a valid JSON file.", $ex); } } else {