Correct a parameter order swap in "diffusion.historyquery" for Mercurial
[phabricator.git] / src / applications / conduit / protocol / exception / ConduitApplicationNotInstalledException.php
blobc1adf2b45107758ff823b177a9f9f811f02869c5
1 <?php
3 final class ConduitApplicationNotInstalledException
4 extends ConduitMethodNotFoundException {
6 public function __construct(ConduitAPIMethod $method, $application) {
7 parent::__construct(
8 pht(
9 "Method '%s' belongs to application '%s', which is not installed.",
10 $method->getAPIMethodName(),
11 $application));