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; } }