Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/phabricator
Path: blob/master/src/applications/conduit/protocol/exception/ConduitApplicationNotInstalledException.php
12262 views
1
<?php
2
3
final class ConduitApplicationNotInstalledException
4
extends ConduitMethodNotFoundException {
5
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));
12
}
13
14
}
15
16