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