Files
CoreGradeLearning/lib/php-css-parser/Parsing/UnexpectedEOFException.php
T
CHIEFSOFT\ameye e592ca6823 first commit
2024-09-30 18:11:26 -04:00

13 lines
273 B
PHP

<?php
namespace Sabberworm\CSS\Parsing;
/**
* Thrown if the CSS parser encounters end of file it did not expect.
*
* Extends `UnexpectedTokenException` in order to preserve backwards compatibility.
*/
class UnexpectedEOFException extends UnexpectedTokenException
{
}