Correct Aphlict websocket URI construction after PHP8 compatibility changes
[phabricator.git] / src / applications / conduit / protocol / exception / ConduitMethodDoesNotExistException.php
blob27c361e05def582e5834e79df8c3e28a40feccf1
1 <?php
3 final class ConduitMethodDoesNotExistException
4 extends ConduitMethodNotFoundException {
6 public function __construct($method_name) {
7 parent::__construct(
8 pht(
9 'Conduit API method "%s" does not exist.',
10 $method_name));