?iť?

Your IP : 3.15.220.201


Current Path : /home/scgforma/www/cloud/3rdparty/punic/punic/code/Exception/
Upload File :
Current File : /home/scgforma/www/cloud/3rdparty/punic/punic/code/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 $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;
    }
}