[ Index ]

PHP Cross Reference of Joomla 4.2.2 documentation

title

Body

[close]

/libraries/src/Event/ -> ErrorEvent.php (source)

   1  <?php
   2  
   3  /**
   4   * Joomla! Content Management System
   5   *
   6   * @copyright  (C) 2018 Open Source Matters, Inc. <https://www.joomla.org>
   7   * @license    GNU General Public License version 2 or later; see LICENSE
   8   */
   9  
  10  namespace Joomla\CMS\Event;
  11  
  12  use Joomla\Application\AbstractApplication;
  13  
  14  // phpcs:disable PSR1.Files.SideEffects
  15  \defined('JPATH_PLATFORM') or die;
  16  // phpcs:enable PSR1.Files.SideEffects
  17  
  18  /**
  19   * Event class for representing the application's `onError` event
  20   *
  21   * @since  4.0.0
  22   */
  23  class ErrorEvent extends AbstractEvent
  24  {
  25      /**
  26       * Get the event's application object
  27       *
  28       * @return  AbstractApplication
  29       *
  30       * @since   4.0.0
  31       */
  32      public function getApplication(): AbstractApplication
  33      {
  34          return $this->arguments['application'];
  35      }
  36  
  37      /**
  38       * Get the event's error object
  39       *
  40       * @return  \Throwable
  41       *
  42       * @since   4.0.0
  43       */
  44      public function getError(): \Throwable
  45      {
  46          return $this->getArgument('subject');
  47      }
  48  
  49      /**
  50       * Set the event's error object
  51       *
  52       * @param   \Throwable  $error  The new error to process
  53       *
  54       * @return  void
  55       *
  56       * @since   4.0.0
  57       */
  58      public function setError(\Throwable $error)
  59      {
  60          $this->setArgument('subject', $error);
  61      }
  62  }


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