Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/phabricator
Path: blob/master/src/applications/conduit/protocol/exception/ConduitMethodDoesNotExistException.php
12262 views
1
<?php
2
3
final class ConduitMethodDoesNotExistException
4
extends ConduitMethodNotFoundException {
5
6
public function __construct($method_name) {
7
parent::__construct(
8
pht(
9
'Conduit API method "%s" does not exist.',
10
$method_name));
11
}
12
13
}
14
15