Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/phabricator
Path: blob/master/src/infrastructure/cluster/exception/PhabricatorClusterNoHostForRoleException.php
12241 views
1
<?php
2
3
final class PhabricatorClusterNoHostForRoleException
4
extends Exception {
5
6
public function __construct($role) {
7
parent::__construct(pht('Search cluster has no hosts for role "%s".',
8
$role));
9
}
10
}
11
12