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:
parent
9fc8a2f61b
commit
2c3268f03e
1 changed files with 1 additions and 1 deletions
|
@ -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 {
|
||||||
|
|
Loading…
Reference in a new issue