⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 librarydnxerror.class.php

📁 ProjectPier 源码 很好的项目管理程序
💻 PHP
字号:
<?php  /**  * Library does not exists error, used by Env::useLibrary() function or any   * situation when library is required but not found  *  * @version 1.0  * @http://www.projectpier.org/  */  class LibraryDnxError extends Error {        /**    * Library name    *    * @var string    */    private $library;          /**    * Construct the LibraryDnxError    *    * @access public    * @param string $library Library name    * @param string $message Error message. If NULL default message will be used    * @return LibraryDnxError    */    function __construct($library, $message = null) {      if (is_null($message)) {        $message = "Library '$library' does not exists";      } // if      parent::__construct($message);      $this->setLibrary($library);    } // __construct        /**    * Return errors specific params...    *    * @access public    * @param void    * @return array    */    function getAdditionalParams() {      return array(        'library' => $this->getLibrary()      ); // array    } // getAdditionalParams        // ---------------------------------------------------    //  Getters and setters    // ---------------------------------------------------        /**    * Get library    *    * @access public    * @param null    * @return string    */    function getLibrary() {      return $this->library;    } // getLibrary        /**    * Set library value    *    * @access public    * @param string $value    * @return null    */    function setLibrary($value) {      $this->library = $value;    } // setLibrary    } // LibraryDnxError?>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -