mirror of
https://github.com/moodle/moodle.git
synced 2025-05-20 23:35:06 +02:00
13 lines
273 B
PHP
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
|
|
{
|
|
}
|