From 2e61b1a3df7b4667a5b1bcfa587e730480a9d870 Mon Sep 17 00:00:00 2001 From: epriestley Date: Tue, 11 Jun 2013 06:26:42 -0700 Subject: [PATCH] Fix a `catch` class name Summary: Now that we examine these in lint, this came up. There is no `ConduitException`; the class is `ConduitClientException`. Test Plan: Lint. Reviewers: vrana, chad Reviewed By: chad CC: aran Differential Revision: https://secure.phabricator.com/D6158 --- src/workflow/ArcanistFeatureWorkflow.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/workflow/ArcanistFeatureWorkflow.php b/src/workflow/ArcanistFeatureWorkflow.php index bc216ca3..491fd549 100644 --- a/src/workflow/ArcanistFeatureWorkflow.php +++ b/src/workflow/ArcanistFeatureWorkflow.php @@ -136,7 +136,7 @@ EOTEXT $command, $name); } - } catch (ConduitException $ex) { + } catch (ConduitClientException $ex) { } } }