1
0
Fork 0
mirror of https://we.phorge.it/source/arcanist.git synced 2024-11-22 14:52:40 +01:00

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
This commit is contained in:
Aviv Eyal 2014-08-28 10:32:57 -07:00 committed by epriestley
parent 9fc8a2f61b
commit 2c3268f03e

View file

@ -200,7 +200,7 @@ final class ArcanistConfigurationManager {
$user_config = phutil_json_decode($user_config_data); $user_config = phutil_json_decode($user_config_data);
} catch (PhutilJSONParserException $ex) { } catch (PhutilJSONParserException $ex) {
throw new PhutilProxyException( throw new PhutilProxyException(
"Your '~/.arcrc' file is not a valid JSON file.". "Your '~/.arcrc' file is not a valid JSON file.",
$ex); $ex);
} }
} else { } else {