summaryrefslogtreecommitdiffstats
path: root/src/Exceptions
diff options
context:
space:
mode:
Diffstat (limited to 'src/Exceptions')
-rw-r--r--src/Exceptions/LexerException.php6
-rw-r--r--src/Exceptions/ParserException.php6
2 files changed, 12 insertions, 0 deletions
diff --git a/src/Exceptions/LexerException.php b/src/Exceptions/LexerException.php
index 53327ed..886e662 100644
--- a/src/Exceptions/LexerException.php
+++ b/src/Exceptions/LexerException.php
@@ -1,5 +1,11 @@
<?php
+/**
+ * Exception thrown by the lexer.
+ *
+ * @package SqlParser
+ * @subpackage Exceptions
+ */
namespace SqlParser\Exceptions;
use SqlParser\Token;
diff --git a/src/Exceptions/ParserException.php b/src/Exceptions/ParserException.php
index 06a6033..5a9fac0 100644
--- a/src/Exceptions/ParserException.php
+++ b/src/Exceptions/ParserException.php
@@ -1,5 +1,11 @@
<?php
+/**
+ * Exception thrown by the parser.
+ *
+ * @package SqlParser
+ * @subpackage Exceptions
+ */
namespace SqlParser\Exceptions;
use SqlParser\Token;