%PDF- %PDF-
| Direktori : /www/varak.net/nextcloud.varak.net/3rdparty/punic/punic/src/Exception/ |
| Current File : /www/varak.net/nextcloud.varak.net/3rdparty/punic/punic/src/Exception/NotImplemented.php |
<?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|null $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;
}
}