[ Index ]

PHP Cross Reference of Joomla 4.2.2 documentation

title

Body

[close]

/libraries/src/Component/Exception/ -> MissingComponentException.php (source)

   1  <?php
   2  
   3  /**
   4   * Joomla! Content Management System
   5   *
   6   * @copyright  (C) 2017 Open Source Matters, Inc. <https://www.joomla.org>
   7   * @license    GNU General Public License version 2 or later; see LICENSE.txt
   8   */
   9  
  10  namespace Joomla\CMS\Component\Exception;
  11  
  12  use Joomla\CMS\Router\Exception\RouteNotFoundException;
  13  
  14  // phpcs:disable PSR1.Files.SideEffects
  15  \defined('JPATH_PLATFORM') or die;
  16  // phpcs:enable PSR1.Files.SideEffects
  17  
  18  /**
  19   * Exception class defining an error for a missing component
  20   *
  21   * @since  3.7.0
  22   */
  23  class MissingComponentException extends RouteNotFoundException
  24  {
  25      /**
  26       * Constructor
  27       *
  28       * @param   string      $message   The Exception message to throw.
  29       * @param   integer     $code      The Exception code.
  30       * @param   \Exception  $previous  The previous exception used for the exception chaining.
  31       *
  32       * @since   3.7.0
  33       */
  34      public function __construct($message = '', $code = 404, \Exception $previous = null)
  35      {
  36          parent::__construct($message, $code, $previous);
  37      }
  38  }


Generated: Wed Sep 7 05:41:13 2022 Chilli.vc Blog - For Webmaster,Blog-Writer,System Admin and Domainer