PATH:
home
/
sparklp6
/
public_html
/
sparklerfilters-org
/
libraries
/
fof30
/
Model
/
DataModel
/
Exception
<?php /** * @package FOF * @copyright Copyright (c)2010-2020 Nicholas K. Dionysopoulos / Akeeba Ltd * @license GNU General Public License version 2, or later */ namespace FOF30\Model\DataModel\Exception; defined('_JEXEC') || die; use Exception; use Joomla\CMS\Language\Text; class TreeInvalidLftRgtParent extends TreeInvalidLftRgt { public function __construct($message = '', $code = 500, Exception $previous = null) { if (empty($message)) { $message = Text::_('LIB_FOF_MODEL_ERR_TREE_INVALIDLFTRGT_PARENT'); } parent::__construct($message, $code, $previous); } }
[-] TreeInvalidLftRgtOther.php
[edit]
[-] TreeUnsupportedMethod.php
[edit]
[-] CannotLockNotLoadedRecord.php
[edit]
[-] BaseException.php
[edit]
[-] NoAssetKey.php
[edit]
[-] NoContentType.php
[edit]
[-] SpecialColumnMissing.php
[edit]
[-] NoTableColumns.php
[edit]
[-] TreeRootNotFound.php
[edit]
[-] InvalidSearchMethod.php
[edit]
[-] TreeMethodOnlyAllowedInRoot.php
[edit]
[-] TreeIncompatibleTable.php
[edit]
[-] TreeUnexpectedPrimaryKey.php
[edit]
[-] TreeInvalidLftRgtParent.php
[edit]
[-] RecordNotLoaded.php
[edit]
[-] TreeInvalidLftRgtSibling.php
[edit]
[-] NoItemsFound.php
[edit]
[-] TreeInvalidLftRgtCurrent.php
[edit]
[-] TreeInvalidLftRgt.php
[edit]
[+]
..