1<?php 2 3final 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