summaryrefslogtreecommitdiff
path: root/src/HTML5/Parser
diff options
context:
space:
mode:
authorTechnosophos <[email protected]>2013-04-10 17:07:34 -0500
committerTechnosophos <[email protected]>2013-04-10 17:07:34 -0500
commitc6abe3417cf9adeeeeb17319081486109581378a (patch)
tree4617c538adc527dc54f10b57254915fe4e52764a /src/HTML5/Parser
parentdd505f77a4d67f7d0f484fea29105c29f4b40db8 (diff)
Namespace fixed for ParseError.
Diffstat (limited to 'src/HTML5/Parser')
-rw-r--r--src/HTML5/Parser/ParseError.php5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/HTML5/Parser/ParseError.php b/src/HTML5/Parser/ParseError.php
index 1744c85..8fc646e 100644
--- a/src/HTML5/Parser/ParseError.php
+++ b/src/HTML5/Parser/ParseError.php
@@ -1,7 +1,8 @@
<?php
+namespace HTML5\Parser;
/**
* When the parser has an error.
*/
-class ParseError extends Exception {
-} \ No newline at end of file
+class ParseError extends \Exception {
+}