소스 검색

[CssSelector] ...

Fabien Potencier 14 년 전
부모
커밋
d87c96bb65
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      src/Symfony/Component/CssSelector/SyntaxError.php

+ 2 - 2
src/Symfony/Component/CssSelector/SyntaxError.php

@@ -12,13 +12,13 @@
 namespace Symfony\Component\CssSelector;
 
 /**
- * SyntaxError is thrown when a CSS selector syntax is not valid.
+ * ParseException is thrown when a CSS selector syntax is not valid.
  *
  * This component is a port of the Python lxml library,
  * which is copyright Infrae and distributed under the BSD license.
  *
  * @author Fabien Potencier <fabien@symfony.com>
  */
-class SyntaxError extends \LogicException
+class ParseException extends \LogicException
 {
 }