ParseException.php 375 B

123456789101112131415161718
  1. <?php
  2. declare(strict_types=1);
  3. namespace Sabre\Xml;
  4. use Exception;
  5. /**
  6. * This is a base exception for any exception related to parsing xml files.
  7. *
  8. * @copyright Copyright (C) 2009-2015 fruux GmbH (https://fruux.com/).
  9. * @author Evert Pot (http://evertpot.com/)
  10. * @license http://sabre.io/license/ Modified BSD License
  11. */
  12. class ParseException extends \Exception
  13. {
  14. }