Files
faveo/vendor/sabberworm/php-css-parser/src/Parsing/UnexpectedEOFException.php
RafficMohammed 67950fc78f fixes
2023-02-17 13:25:50 +05:30

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
{
}