SyntaxError.php 681 B

1234567891011121314151617181920212223242526
  1. <?php
  2. namespace Symfony\Components\CssSelector;
  3. /*
  4. * This file is part of the Symfony package.
  5. *
  6. * (c) Fabien Potencier <fabien.potencier@symfony-project.com>
  7. *
  8. * For the full copyright and license information, please view the LICENSE
  9. * file that was distributed with this source code.
  10. */
  11. /**
  12. * SyntaxError is thrown when a CSS selector syntax is not valid.
  13. *
  14. * This component is a port of the Python lxml library,
  15. * which is copyright Infrae and distributed under the BSD license.
  16. *
  17. * @package Symfony
  18. * @subpackage Components_CssSelector
  19. * @author Fabien Potencier <fabien.potencier@symfony-project.com>
  20. */
  21. class SyntaxError extends \LogicException
  22. {
  23. }