mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-04 12:42:43 +01:00
13 lines
230 B
PHP
13 lines
230 B
PHP
|
<?php
|
||
|
|
||
|
/**
|
||
|
* @concrete-extensible
|
||
|
*/
|
||
|
class ConduitMethodNotFoundException extends ConduitException {
|
||
|
|
||
|
public function __construct($method) {
|
||
|
parent::__construct(pht("Conduit method '%s' does not exist.", $method));
|
||
|
}
|
||
|
|
||
|
}
|