We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3b92b4d commit 9bfbbefCopy full SHA for 9bfbbef
1 file changed
src/Expression/Node.php
@@ -103,9 +103,8 @@ public static function parse(Lexer $lexer)
103
if ($lexer->isEnd()) {
104
throw new Exception(sprintf('Tag was %s is not closed.', $identifier));
105
}
106
-
107
} catch (Exception $e) {
108
- throw new Exception(sprintf('%s->%s', $identifier, $e->getMessage()));
+ throw new Exception(sprintf('<%s> %s', $identifier, $e->getMessage()));
109
110
111
0 commit comments