File manager - Edit - /home/jardides/www/Cloud/3rdparty/punic/punic/code/Exception/NotImplemented.php
Back
<?php namespace Punic\Exception; /** * An exception raised when a function meets an argument of an unsupported type. */ class NotImplemented extends \Punic\Exception { protected $function; /** * Initializes the instance. * * @param string $function The function/method that's not implemented * @param \Exception $previous The previous exception used for the exception chaining */ public function __construct($function, $previous = null) { $this->function = $function; $message = "$function is not implemented"; parent::__construct($message, \Punic\Exception::NOT_IMPLEMENTED, $previous); } /** * Retrieves the name of the not implemented function/method. * * @return string */ public function getFunction() { return $this->function; } }
| ver. 1.4 |
Github
|
.
| PHP 7.4.33 | Generation time: 0 |
proxy
|
phpinfo
|
Settings