[ Index ]

PHP Cross Reference of Limb3

title

Body

[close]

/tree/src/exception/ -> lmbTreeInvalidNodeException.class.php (source)

   1  <?php
   2  /*
   3   * Limb PHP Framework
   4   *
   5   * @link http://limb-project.com 
   6   * @copyright  Copyright &copy; 2004-2007 BIT(http://bit-creative.com)
   7   * @license    LGPL http://www.gnu.org/copyleft/lesser.html 
   8   */
   9  
  10  /**

  11   * class lmbTreeInvalidNodeException.

  12   *

  13   * @package tree

  14   * @version $Id$

  15   */
  16  class lmbTreeInvalidNodeException extends lmbTreeException
  17  {
  18    protected $node;
  19  
  20    function __construct($node)
  21    {
  22      $this->node = $node;
  23      parent :: __construct("Node '$node' is invalid");
  24    }
  25  
  26    function getNode()
  27    {
  28      return $this->node;
  29    }
  30  }
  31  
  32  ?>


Generated: Tue Oct 7 05:02:03 2008 Cross-referenced by PHPXref 0.7