Search moodle.org's
Developer Documentation

See Release Notes

  • Bug fixes for general core bugs in 3.10.x will end 8 November 2021 (12 months).
  • Bug fixes for security issues in 3.10.x will end 9 May 2022 (18 months).
  • PHP version: minimum PHP 7.2.0 Note: minimum PHP version has increased since Moodle 3.8. PHP 7.3.x and 7.4.x are supported too.

Differences Between: [Versions 39 and 310]

   1  <?php
   2  
   3  namespace BirknerAlex\XMPPHP;
   4  
   5  use \Exception as ObjectException;
   6  
   7  /**
   8   * XMPPHP: The PHP XMPP Library
   9   * Copyright (C) 2008  Nathanael C. Fritz
  10   * This file is part of SleekXMPP.
  11   *
  12   * XMPPHP is free software; you can redistribute it and/or modify
  13   * it under the terms of the GNU General Public License as published by
  14   * the Free Software Foundation; either version 2 of the License, or
  15   * (at your option) any later version.
  16   *
  17   * XMPPHP is distributed in the hope that it will be useful,
  18   * but WITHOUT ANY WARRANTY; without even the implied warranty of
  19   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  20   * GNU General Public License for more details.
  21   *
  22   * You should have received a copy of the GNU General Public License
  23   * along with XMPPHP; if not, write to the Free Software
  24   * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
  25   *
  26   * @category   xmpphp
  27   * @package    XMPPHP
  28   * @author     Nathanael C. Fritz <JID: fritzy@netflint.net>
  29   * @author     Stephan Wentz <JID: stephan@jabber.wentz.it>
  30   * @author     Michael Garvin <JID: gar@netflint.net>
  31   * @author     Alexander Birkner (https://github.com/BirknerAlex)
  32   * @copyright  2008 Nathanael C. Fritz
  33   */
  34  
  35  /**
  36   * XMPPHP Main Class
  37   *
  38   * @category   xmpphp
  39   * @package    XMPPHP
  40   * @author     Nathanael C. Fritz <JID: fritzy@netflint.net>
  41   * @author     Stephan Wentz <JID: stephan@jabber.wentz.it>
  42   * @author     Michael Garvin <JID: gar@netflint.net>
  43   * @copyright  2008 Nathanael C. Fritz
  44   * @version    $Id$
  45   */
  46  class Exception extends ObjectException {
  47  }