1
0
Fork 0
mirror of https://we.phorge.it/source/arcanist.git synced 2025-01-10 23:01:04 +01:00

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
This commit is contained in:
epriestley 2013-06-11 06:26:42 -07:00
parent 9a46ba7ea1
commit 2e61b1a3df

View file

@ -136,7 +136,7 @@ EOTEXT
$command, $command,
$name); $name);
} }
} catch (ConduitException $ex) { } catch (ConduitClientException $ex) {
} }
} }
} }