Файловый менеджер - Редактировать - /home/wuectly/www/03cbe/Exception.zip
Назад
PK �]!]���a� � ItemNotFound.phpnu &1i� <?php /** * @package FOF * @copyright Copyright (c)2010-2022 Nicholas K. Dionysopoulos / Akeeba Ltd * @license GNU General Public License version 3, or later */ namespace FOF40\Controller\Exception; defined('_JEXEC') || die; use RuntimeException; /** * Exception thrown when we can't find the requested item in a read task */ class ItemNotFound extends RuntimeException { } PK �]!]Ll�� � CannotGetName.phpnu &1i� <?php /** * @package FOF * @copyright Copyright (c)2010-2022 Nicholas K. Dionysopoulos / Akeeba Ltd * @license GNU General Public License version 3, or later */ namespace FOF40\View\Exception; defined('_JEXEC') || die; use Exception; use Joomla\CMS\Language\Text; use RuntimeException; /** * Exception thrown when we can't get a Controller's name */ class CannotGetName extends RuntimeException { public function __construct(string $message = "", int $code = 500, Exception $previous = null) { if (empty($message)) { $message = Text::_('LIB_FOF40_VIEW_ERR_GET_NAME'); } parent::__construct($message, $code, $previous); } } PK �]!]�2�� � LockedRecord.phpnu &1i� <?php /** * @package FOF * @copyright Copyright (c)2010-2022 Nicholas K. Dionysopoulos / Akeeba Ltd * @license GNU General Public License version 3, or later */ namespace FOF40\Controller\Exception; defined('_JEXEC') || die; use Exception; use Joomla\CMS\Language\Text; use RuntimeException; /** * Exception thrown when the provided Model is locked for writing by another user */ class LockedRecord extends RuntimeException { public function __construct(string $message = "", int $code = 403, Exception $previous = null) { if (empty($message)) { $message = Text::_('LIB_FOF40_CONTROLLER_ERR_LOCKED'); } parent::__construct($message, $code, $previous); } } PK �]!]݄�ы � NotADataModel.phpnu &1i� <?php /** * @package FOF * @copyright Copyright (c)2010-2022 Nicholas K. Dionysopoulos / Akeeba Ltd * @license GNU General Public License version 3, or later */ namespace FOF40\Controller\Exception; defined('_JEXEC') || die; use InvalidArgumentException; /** * Exception thrown when the provided Model is not a DataModel */ class NotADataModel extends InvalidArgumentException { } PK �]!]��� � TaskNotFound.phpnu &1i� <?php /** * @package FOF * @copyright Copyright (c)2010-2022 Nicholas K. Dionysopoulos / Akeeba Ltd * @license GNU General Public License version 3, or later */ namespace FOF40\Controller\Exception; defined('_JEXEC') || die; use InvalidArgumentException; /** * Exception thrown when we can't find a suitable method to handle the requested task */ class TaskNotFound extends InvalidArgumentException { } PK �]!]P#� � UnsupportedCacheException.phpnu &1i� <?php /** * Joomla! Content Management System * * @copyright (C) 2017 Open Source Matters, Inc. <https://www.joomla.org> * @license GNU General Public License version 2 or later; see LICENSE.txt */ namespace Joomla\CMS\Cache\Exception; defined('JPATH_PLATFORM') or die; /** * Exception class defining an unsupported cache storage object * * @since 3.6.3 */ class UnsupportedCacheException extends \RuntimeException implements CacheExceptionInterface { } PK �]!]ؔ<� � CacheConnectingException.phpnu &1i� <?php /** * Joomla! Content Management System * * @copyright (C) 2017 Open Source Matters, Inc. <https://www.joomla.org> * @license GNU General Public License version 2 or later; see LICENSE.txt */ namespace Joomla\CMS\Cache\Exception; defined('JPATH_PLATFORM') or die; /** * Exception class defining an error connecting to the cache storage engine * * @since 3.6.3 */ class CacheConnectingException extends \RuntimeException implements CacheExceptionInterface { } PK �]!]Ƿ��� � CacheExceptionInterface.phpnu &1i� <?php /** * Joomla! Content Management System * * @copyright (C) 2017 Open Source Matters, Inc. <https://www.joomla.org> * @license GNU General Public License version 2 or later; see LICENSE.txt */ namespace Joomla\CMS\Cache\Exception; defined('JPATH_PLATFORM') or die; /** * Exception interface defining a cache storage error * * @since 3.7.0 */ interface CacheExceptionInterface { } PK �k!]���I� � MissingComponentException.phpnu &1i� <?php /** * Joomla! Content Management System * * @copyright (C) 2017 Open Source Matters, Inc. <https://www.joomla.org> * @license GNU General Public License version 2 or later; see LICENSE.txt */ namespace Joomla\CMS\Component\Exception; defined('JPATH_PLATFORM') or die; use Joomla\CMS\Router\Exception\RouteNotFoundException; /** * Exception class defining an error for a missing component * * @since 3.7.0 */ class MissingComponentException extends RouteNotFoundException { /** * Constructor * * @param string $message The Exception message to throw. * @param integer $code The Exception code. * @param \Exception $previous The previous exception used for the exception chaining. * * @since 3.7.0 */ public function __construct($message = '', $code = 404, \Exception $previous = null) { parent::__construct($message, $code, $previous); } } PK r!]؆wdr r MissingAttribute.phpnu &1i� <?php /** * @package FOF * @copyright Copyright (c)2010-2020 Nicholas K. Dionysopoulos / Akeeba Ltd * @license GNU General Public License version 2, or later */ namespace FOF30\Toolbar\Exception; defined('_JEXEC') || die; use Exception; use InvalidArgumentException; use Joomla\CMS\Language\Text; class MissingAttribute extends InvalidArgumentException { public function __construct($missingArgument, $buttonType, $code = 500, Exception $previous = null) { $message = Text::sprintf('LIB_FOF_TOOLBAR_ERR_MISSINGARGUMENT', $missingArgument, $buttonType); parent::__construct($message, $code, $previous); } } PK r!]9<� Q Q UnknownButtonType.phpnu &1i� <?php /** * @package FOF * @copyright Copyright (c)2010-2020 Nicholas K. Dionysopoulos / Akeeba Ltd * @license GNU General Public License version 2, or later */ namespace FOF30\Toolbar\Exception; defined('_JEXEC') || die; use Exception; use InvalidArgumentException; use Joomla\CMS\Language\Text; class UnknownButtonType extends InvalidArgumentException { public function __construct($buttonType, $code = 500, Exception $previous = null) { $message = Text::sprintf('LIB_FOF_TOOLBAR_ERR_UNKNOWNBUTTONTYPE', $buttonType); parent::__construct($message, $code, $previous); } } PK &r!]�Dj� � AccessForbidden.phpnu &1i� <?php /** * @package FOF * @copyright Copyright (c)2010-2022 Nicholas K. Dionysopoulos / Akeeba Ltd * @license GNU General Public License version 3, or later */ namespace FOF40\View\Exception; defined('_JEXEC') || die; use Exception; use Joomla\CMS\Language\Text; use RuntimeException; /** * Exception thrown when the access to the requested resource is forbidden under the current execution context */ class AccessForbidden extends RuntimeException { public function __construct(string $message = "", int $code = 403, Exception $previous = null) { if (empty($message)) { $message = Text::_('JLIB_APPLICATION_ERROR_ACCESS_FORBIDDEN'); } parent::__construct($message, $code, $previous); } } PK �t!]]�7�� � RouteNotFoundException.phpnu &1i� <?php /** * Joomla! Content Management System * * @copyright (C) 2017 Open Source Matters, Inc. <https://www.joomla.org> * @license GNU General Public License version 2 or later; see LICENSE.txt */ namespace Joomla\CMS\Router\Exception; defined('JPATH_PLATFORM') or die; /** * Exception class defining an error for a missing route * * @since 3.8.0 */ class RouteNotFoundException extends \InvalidArgumentException { /** * Constructor * * @param string $message The Exception message to throw. * @param integer $code The Exception code. * @param \Exception $previous The previous exception used for the exception chaining. * * @since 3.8.0 */ public function __construct($message = '', $code = 404, \Exception $previous = null) { if (empty($message)) { $message = 'URL was not found'; } parent::__construct($message, $code, $previous); } } PK �t!]C�#N N NoComponent.phpnu &1i� <?php /** * @package FOF * @copyright Copyright (c)2010-2022 Nicholas K. Dionysopoulos / Akeeba Ltd * @license GNU General Public License version 3, or later */ namespace FOF40\Container\Exception; defined('_JEXEC') || die; use Exception; class NoComponent extends \Exception { public function __construct(string $message = "", int $code = 0, Exception $previous = null) { if (empty($message)) { $message = 'No component specified building the Container object'; } if (empty($code)) { $code = 500; } parent::__construct($message, $code, $previous); } } PK �{!]*�t�N N NoContentType.phpnu &1i� <?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; use UnexpectedValueException; class NoContentType extends UnexpectedValueException { public function __construct($className, $code = 500, Exception $previous = null) { $message = Text::sprintf('LIB_FOF_MODEL_ERR_NOCONTENTTYPE', $className); parent::__construct($message, $code, $previous); } } PK �{!]]�/�_ _ TreeIncompatibleTable.phpnu &1i� <?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; use UnexpectedValueException; class TreeIncompatibleTable extends UnexpectedValueException { public function __construct($tableName, $code = 500, Exception $previous = null) { $message = Text::sprintf('LIB_FOF_MODEL_ERR_TREE_INCOMPATIBLETABLE', $tableName); parent::__construct($message, $code, $previous); } } PK �{!]*�n n TreeUnexpectedPrimaryKey.phpnu &1i� <?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; use UnexpectedValueException; class TreeUnexpectedPrimaryKey extends UnexpectedValueException { public function __construct($message = '', $code = 500, Exception $previous = null) { if (empty($message)) { $message = Text::_('LIB_FOF_MODEL_ERR_TREE_UNEXPECTEDPK'); } parent::__construct($message, $code, $previous); } } PK �{!]G-ev� � TreeInvalidLftRgt.phpnu &1i� <?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 RuntimeException; abstract class TreeInvalidLftRgt extends RuntimeException { public function __construct($message = '', $code = 500, Exception $previous = null) { parent::__construct($message, $code, $previous); } } PK �{!]��}R R TreeInvalidLftRgtSibling.phpnu &1i� <?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 TreeInvalidLftRgtSibling extends TreeInvalidLftRgt { public function __construct($message = '', $code = 500, Exception $previous = null) { if (empty($message)) { $message = Text::_('LIB_FOF_MODEL_ERR_TREE_INVALIDLFTRGT_SIBLING'); } parent::__construct($message, $code, $previous); } } PK �{!]�c��R R TreeInvalidLftRgtCurrent.phpnu &1i� <?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 TreeInvalidLftRgtCurrent extends TreeInvalidLftRgt { public function __construct($message = '', $code = 500, Exception $previous = null) { if (empty($message)) { $message = Text::_('LIB_FOF_MODEL_ERR_TREE_INVALIDLFTRGT_CURRENT'); } parent::__construct($message, $code, $previous); } } PK �{!]Kpj�! ! NoTableColumns.phpnu &1i� <?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; class NoTableColumns extends BaseException { } PK �{!]�#�N N CannotLockNotLoadedRecord.phpnu &1i� <?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 CannotLockNotLoadedRecord extends BaseException { public function __construct($message = '', $code = 500, Exception $previous = null) { if (empty($message)) { $message = Text::_('LIB_FOF_MODEL_ERR_CANNOTLOCKNOTLOADEDRECORD'); } parent::__construct($message, $code, $previous); } } PK �{!]k��' ' SpecialColumnMissing.phpnu &1i� <?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; class SpecialColumnMissing extends BaseException { } PK �{!]��& & InvalidSearchMethod.phpnu &1i� <?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; class InvalidSearchMethod extends BaseException { } PK �{!]lb�N N TreeInvalidLftRgtOther.phpnu &1i� <?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 TreeInvalidLftRgtOther extends TreeInvalidLftRgt { public function __construct($message = '', $code = 500, Exception $previous = null) { if (empty($message)) { $message = Text::_('LIB_FOF_MODEL_ERR_TREE_INVALIDLFTRGT_OTHER'); } parent::__construct($message, $code, $previous); } } PK �{!]� !7 7 RecordNotLoaded.phpnu &1i� <?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 RecordNotLoaded extends BaseException { public function __construct($message = "", $code = 404, Exception $previous = null) { if (empty($message)) { $message = Text::_('LIB_FOF_MODEL_ERR_COULDNOTLOAD'); } parent::__construct($message, $code, $previous); } } PK �{!]c�BQ Q TreeRootNotFound.phpnu &1i� <?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; use RuntimeException; class TreeRootNotFound extends RuntimeException { public function __construct($tableName, $lft, $code = 500, Exception $previous = null) { $message = Text::sprintf('LIB_FOF_MODEL_ERR_TREE_ROOTNOTFOUND', $tableName, $lft); parent::__construct($message, $code, $previous); } } PK �{!]fl�M M TreeMethodOnlyAllowedInRoot.phpnu &1i� <?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; use RuntimeException; class TreeMethodOnlyAllowedInRoot extends RuntimeException { public function __construct($method = '', $code = 500, Exception $previous = null) { $message = Text::sprintf('LIB_FOF_MODEL_ERR_TREE_ONLYINROOT', $method); parent::__construct($message, $code, $previous); } } PK �{!]��`P P TreeInvalidLftRgtParent.phpnu &1i� <?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); } } PK �{!]B9��# # NoItemsFound.phpnu &1i� <?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 NoItemsFound extends BaseException { public function __construct($className, $code = 404, Exception $previous = null) { $message = Text::sprintf('LIB_FOF_MODEL_ERR_NOITEMSFOUND', $className); parent::__construct($message, $code, $previous); } } PK �{!]�IQJ J TreeUnsupportedMethod.phpnu &1i� <?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; use LogicException; class TreeUnsupportedMethod extends LogicException { public function __construct($method = '', $code = 500, Exception $previous = null) { $message = Text::sprintf('LIB_FOF_MODEL_ERR_TREE_UNSUPPORTEDMETHOD', $method); parent::__construct($message, $code, $previous); } } PK �{!]���: : BaseException.phpnu &1i� <?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 RuntimeException; class BaseException extends RuntimeException { } PK �{!]�?��Y Y NoAssetKey.phpnu &1i� <?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; use UnexpectedValueException; class NoAssetKey extends UnexpectedValueException { public function __construct($message = '', $code = 500, Exception $previous = null) { if (empty($message)) { $message = Text::_('LIB_FOF_MODEL_ERR_NOASSETKEY'); } parent::__construct($message, $code, $previous); } } PK �|!]���\� � NotADataView.phpnu &1i� <?php /** * @package FOF * @copyright Copyright (c)2010-2022 Nicholas K. Dionysopoulos / Akeeba Ltd * @license GNU General Public License version 3, or later */ namespace FOF40\Controller\Exception; defined('_JEXEC') || die; use InvalidArgumentException; /** * Exception thrown when the provided View does not implement DataViewInterface */ class NotADataView extends InvalidArgumentException { } PK �|!]��!�H H DispatcherNotFound.phpnu &1i� <?php /** * @package FOF * @copyright Copyright (c)2010-2020 Nicholas K. Dionysopoulos / Akeeba Ltd * @license GNU General Public License version 2, or later */ namespace FOF30\Factory\Exception; defined('_JEXEC') || die; use Exception; use Joomla\CMS\Language\Text; use RuntimeException; class DispatcherNotFound extends RuntimeException { public function __construct($dispatcherClass, $code = 500, Exception $previous = null) { $message = Text::sprintf('LIB_FOF_DISPATCHER_ERR_NOT_FOUND', $dispatcherClass); parent::__construct($message, $code, $previous); } } PK �|!][� 2> > ControllerNotFound.phpnu &1i� <?php /** * @package FOF * @copyright Copyright (c)2010-2020 Nicholas K. Dionysopoulos / Akeeba Ltd * @license GNU General Public License version 2, or later */ namespace FOF30\Factory\Exception; defined('_JEXEC') || die; use Exception; use Joomla\CMS\Language\Text; use RuntimeException; class ControllerNotFound extends RuntimeException { public function __construct($controller, $code = 500, Exception $previous = null) { $message = Text::sprintf('LIB_FOF_CONTROLLER_ERR_NOT_FOUND', $controller); parent::__construct($message, $code, $previous); } } PK �|!]��d]< < ToolbarNotFound.phpnu &1i� <?php /** * @package FOF * @copyright Copyright (c)2010-2020 Nicholas K. Dionysopoulos / Akeeba Ltd * @license GNU General Public License version 2, or later */ namespace FOF30\Factory\Exception; defined('_JEXEC') || die; use Exception; use Joomla\CMS\Language\Text; use RuntimeException; class ToolbarNotFound extends RuntimeException { public function __construct($toolbarClass, $code = 500, Exception $previous = null) { $message = Text::sprintf('LIB_FOF_TOOLBAR_ERR_NOT_FOUND', $toolbarClass); parent::__construct($message, $code, $previous); } } PK �|!]W�\�� � ModelNotFound.phpnu &1i� <?php /** * @package FOF * @copyright Copyright (c)2010-2022 Nicholas K. Dionysopoulos / Akeeba Ltd * @license GNU General Public License version 3, or later */ namespace FOF40\View\Exception; defined('_JEXEC') || die; use Exception; use Joomla\CMS\Language\Text; use RuntimeException; /** * Exception thrown when we can't get a Controller's name */ class ModelNotFound extends RuntimeException { public function __construct(string $path, string $viewName, int $code = 500, Exception $previous = null) { $message = Text::sprintf('LIB_FOF40_VIEW_MODELNOTINVIEW', $path, $viewName); parent::__construct($message, $code, $previous); } } PK �|!]k�wiL L % TransparentAuthenticationNotFound.phpnu &1i� <?php /** * @package FOF * @copyright Copyright (c)2010-2020 Nicholas K. Dionysopoulos / Akeeba Ltd * @license GNU General Public License version 2, or later */ namespace FOF30\Factory\Exception; defined('_JEXEC') || die; use Exception; use Joomla\CMS\Language\Text; use RuntimeException; class TransparentAuthenticationNotFound extends RuntimeException { public function __construct($taClass, $code = 500, Exception $previous = null) { $message = Text::sprintf('LIB_FOF_TRANSPARENTAUTH_ERR_NOT_FOUND', $taClass); parent::__construct($message, $code, $previous); } } PK �|!]�駯0 0 ViewNotFound.phpnu &1i� <?php /** * @package FOF * @copyright Copyright (c)2010-2020 Nicholas K. Dionysopoulos / Akeeba Ltd * @license GNU General Public License version 2, or later */ namespace FOF30\Factory\Exception; defined('_JEXEC') || die; use Exception; use Joomla\CMS\Language\Text; use RuntimeException; class ViewNotFound extends RuntimeException { public function __construct($viewClass, $code = 500, Exception $previous = null) { $message = Text::sprintf('LIB_FOF_VIEW_ERR_NOT_FOUND', $viewClass); parent::__construct($message, $code, $previous); } } PK �|!]�?d3 3 DownloadError.phpnu &1i� <?php /** * @package FOF * @copyright Copyright (c)2010-2020 Nicholas K. Dionysopoulos / Akeeba Ltd * @license GNU General Public License version 2, or later */ namespace FOF30\Download\Exception; defined('_JEXEC') || die; use RuntimeException; class DownloadError extends RuntimeException { } PK q}!]��v�� � EmptyStack.phpnu &1i� <?php /** * @package FOF * @copyright Copyright (c)2010-2022 Nicholas K. Dionysopoulos / Akeeba Ltd * @license GNU General Public License version 3, or later */ namespace FOF40\View\Exception; defined('_JEXEC') || die; use Exception; use Joomla\CMS\Language\Text; use RuntimeException; /** * Exception thrown when we are trying to operate on an empty section stack */ class EmptyStack extends RuntimeException { public function __construct(string $message = "", int $code = 500, Exception $previous = null) { $message = Text::_('LIB_FOF40_VIEW_EMPTYSECTIONSTACK'); parent::__construct($message, $code, $previous); } } PK q}!]ps�� � UnrecognisedExtension.phpnu &1i� <?php /** * @package FOF * @copyright Copyright (c)2010-2022 Nicholas K. Dionysopoulos / Akeeba Ltd * @license GNU General Public License version 3, or later */ namespace FOF40\View\Exception; defined('_JEXEC') || die; use Exception; use InvalidArgumentException; use Joomla\CMS\Language\Text; /** * Exception thrown when we can't figure out which engine to use for a view template */ class UnrecognisedExtension extends InvalidArgumentException { public function __construct(string $path, int $code = 500, Exception $previous = null) { $message = Text::sprintf('LIB_FOF40_VIEW_UNRECOGNISEDEXTENSION', $path); parent::__construct($message, $code, $previous); } } PK q}!]�q� � PossiblySuhosin.phpnu &1i� <?php /** * @package FOF * @copyright Copyright (c)2010-2022 Nicholas K. Dionysopoulos / Akeeba Ltd * @license GNU General Public License version 3, or later */ namespace FOF40\View\Exception; defined('_JEXEC') || die; use Exception; use Joomla\CMS\Language\Text; use RuntimeException; /** * Exception thrown when the access to the requested resource is forbidden under the current execution context */ class PossiblySuhosin extends RuntimeException { public function __construct(string $message = "", int $code = 403, Exception $previous = null) { if (empty($message)) { $message = Text::_('LIB_FOF40_VIEW_POSSIBLYSUHOSIN'); } parent::__construct($message, $code, $previous); } } PK ��!]��*�� � UnsupportedStorageException.phpnu &1i� <?php /** * Joomla! Content Management System * * @copyright (C) 2017 Open Source Matters, Inc. <https://www.joomla.org> * @license GNU General Public License version 2 or later; see LICENSE.txt */ namespace Joomla\CMS\Session\Exception; defined('JPATH_PLATFORM') or die; /** * Exception class defining an unsupported session storage object * * @since 3.6.3 */ class UnsupportedStorageException extends \RuntimeException { } PK Ǧ!]����q q InvalidFieldObject.phpnu &1i� <?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\Filter\Exception; defined('_JEXEC') || die; use Exception; use InvalidArgumentException; use Joomla\CMS\Language\Text; class InvalidFieldObject extends InvalidArgumentException { public function __construct($message = "", $code = 500, Exception $previous = null) { if (empty($message)) { $message = Text::_('LIB_FOF_MODEL_ERR_FILTER_INVALIDFIELD'); } parent::__construct($message, $code, $previous); } } PK Ǧ!]��C�\ \ NoDatabaseObject.phpnu &1i� <?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\Filter\Exception; defined('_JEXEC') || die; use Exception; use InvalidArgumentException; use Joomla\CMS\Language\Text; class NoDatabaseObject extends InvalidArgumentException { public function __construct($fieldType, $code = 500, Exception $previous = null) { $message = Text::sprintf('LIB_FOF_MODEL_ERR_FILTER_NODBOBJECT', $fieldType); parent::__construct($message, $code, $previous); } } PK ˦!]�-�e, , ForeignModelNotFound.phpnu &1i� <?php /** * @package FOF * @copyright Copyright (c)2010-2022 Nicholas K. Dionysopoulos / Akeeba Ltd * @license GNU General Public License version 3, or later */ namespace FOF40\Model\DataModel\Relation\Exception; defined('_JEXEC') || die; class ForeignModelNotFound extends \Exception {} PK ˦!] ���( ( SaveNotSupported.phpnu &1i� <?php /** * @package FOF * @copyright Copyright (c)2010-2022 Nicholas K. Dionysopoulos / Akeeba Ltd * @license GNU General Public License version 3, or later */ namespace FOF40\Model\DataModel\Relation\Exception; defined('_JEXEC') || die; class SaveNotSupported extends \Exception {} PK ˦!]u��( ( RelationNotFound.phpnu &1i� <?php /** * @package FOF * @copyright Copyright (c)2010-2022 Nicholas K. Dionysopoulos / Akeeba Ltd * @license GNU General Public License version 3, or later */ namespace FOF40\Model\DataModel\Relation\Exception; defined('_JEXEC') || die; class RelationNotFound extends \Exception {} PK ˦!]T���, , RelationTypeNotFound.phpnu &1i� <?php /** * @package FOF * @copyright Copyright (c)2010-2022 Nicholas K. Dionysopoulos / Akeeba Ltd * @license GNU General Public License version 3, or later */ namespace FOF40\Model\DataModel\Relation\Exception; defined('_JEXEC') || die; class RelationTypeNotFound extends \Exception {} PK ˦!]�t�* * PivotTableNotFound.phpnu &1i� <?php /** * @package FOF * @copyright Copyright (c)2010-2022 Nicholas K. Dionysopoulos / Akeeba Ltd * @license GNU General Public License version 3, or later */ namespace FOF40\Model\DataModel\Relation\Exception; defined('_JEXEC') || die; class PivotTableNotFound extends \Exception {} PK ˦!]��}�( ( NewNotSupported.phpnu &1i� <?php /** * @package FOF * @copyright Copyright (c)2010-2022 Nicholas K. Dionysopoulos / Akeeba Ltd * @license GNU General Public License version 3, or later */ namespace FOF40\Model\DataModel\Relation\Exception; defined('_JEXEC') || die; class NewNotSupported extends \Exception { } PK $�!]�uM� � FilesystemException.phpnu &1i� <?php /** * Part of the Joomla Framework Filesystem Package * * @copyright Copyright (C) 2005 - 2020 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE */ namespace Joomla\Filesystem\Exception; use Joomla\Filesystem\Path; /** * Exception class for handling errors in the Filesystem package * * @since 1.2.0 * @change 1.6.2 If the message containes a full path, the root path (JPATH_ROOT) is removed from it * to avoid any full path disclosure. Before 1.6.2, the path was propagated as provided. */ class FilesystemException extends \RuntimeException { /** * Constructor. * * @param string $message The message * @param integer $code The code * @param \Throwable|null $previous A previous exception */ public function __construct($message = "", $code = 0, \Throwable $previous = null) { parent::__construct( Path::removeRoot($message), $code, $previous ); } } PK H"]�c�� � ParseException.phpnu &1i� <?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Yaml\Exception; /** * Exception class thrown when an error occurs during parsing. * * @author Fabien Potencier <fabien@symfony.com> */ class ParseException extends RuntimeException { private $parsedFile; private $parsedLine; private $snippet; private $rawMessage; /** * @param string $message The error message * @param int $parsedLine The line where the error occurred * @param string|null $snippet The snippet of code near the problem * @param string|null $parsedFile The file name where the error occurred * @param \Exception|null $previous The previous exception */ public function __construct($message, $parsedLine = -1, $snippet = null, $parsedFile = null, \Exception $previous = null) { $this->parsedFile = $parsedFile; $this->parsedLine = $parsedLine; $this->snippet = $snippet; $this->rawMessage = $message; $this->updateRepr(); parent::__construct($this->message, 0, $previous); } /** * Gets the snippet of code near the error. * * @return string The snippet of code */ public function getSnippet() { return $this->snippet; } /** * Sets the snippet of code near the error. * * @param string $snippet The code snippet */ public function setSnippet($snippet) { $this->snippet = $snippet; $this->updateRepr(); } /** * Gets the filename where the error occurred. * * This method returns null if a string is parsed. * * @return string The filename */ public function getParsedFile() { return $this->parsedFile; } /** * Sets the filename where the error occurred. * * @param string $parsedFile The filename */ public function setParsedFile($parsedFile) { $this->parsedFile = $parsedFile; $this->updateRepr(); } /** * Gets the line where the error occurred. * * @return int The file line */ public function getParsedLine() { return $this->parsedLine; } /** * Sets the line where the error occurred. * * @param int $parsedLine The file line */ public function setParsedLine($parsedLine) { $this->parsedLine = $parsedLine; $this->updateRepr(); } private function updateRepr() { $this->message = $this->rawMessage; $dot = false; if ('.' === substr($this->message, -1)) { $this->message = substr($this->message, 0, -1); $dot = true; } if (null !== $this->parsedFile) { if (\PHP_VERSION_ID >= 50400) { $jsonOptions = JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE; } else { $jsonOptions = 0; } $this->message .= sprintf(' in %s', json_encode($this->parsedFile, $jsonOptions)); } if ($this->parsedLine >= 0) { $this->message .= sprintf(' at line %d', $this->parsedLine); } if ($this->snippet) { $this->message .= sprintf(' (near "%s")', $this->snippet); } if ($dot) { $this->message .= '.'; } } } PK H"]�� � DumpException.phpnu &1i� <?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Yaml\Exception; /** * Exception class thrown when an error occurs during dumping. * * @author Fabien Potencier <fabien@symfony.com> */ class DumpException extends RuntimeException { } PK H"]�_q�� � RuntimeException.phpnu &1i� <?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Yaml\Exception; /** * Exception class thrown when an error occurs during parsing. * * @author Romain Neutron <imprec@gmail.com> */ class RuntimeException extends \RuntimeException implements ExceptionInterface { } PK H"]�^KA� � ExceptionInterface.phpnu &1i� <?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Yaml\Exception; /** * Exception interface for all exceptions thrown by the component. * * @author Fabien Potencier <fabien@symfony.com> */ interface ExceptionInterface { } PK �]!]���a� � ItemNotFound.phpnu &1i� PK �]!]Ll�� � � CannotGetName.phpnu &1i� PK �]!]�2�� � � LockedRecord.phpnu &1i� PK �]!]݄�ы � NotADataModel.phpnu &1i� PK �]!]��� � K TaskNotFound.phpnu &1i� PK �]!]P#� � , UnsupportedCacheException.phpnu &1i� PK �]!]ؔ<� � P CacheConnectingException.phpnu &1i� PK �]!]Ƿ��� � ~ CacheExceptionInterface.phpnu &1i� PK �k!]���I� � [ MissingComponentException.phpnu &1i� PK r!]؆wdr r 7 MissingAttribute.phpnu &1i� PK r!]9<� Q Q � UnknownButtonType.phpnu &1i� PK &r!]�Dj� � � AccessForbidden.phpnu &1i� PK �t!]]�7�� � � RouteNotFoundException.phpnu &1i� PK �t!]C�#N N r! NoComponent.phpnu &1i� PK �{!]*�t�N N �# NoContentType.phpnu &1i� PK �{!]]�/�_ _ �&