blob: 368ec70c74efaeea1386b570fc4cf686a5ff9121 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<?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
{
}
|