mirror of
https://github.com/moodle/moodle.git
synced 2025-07-19 05:11:33 +02:00
22 lines
334 B
PHP
22 lines
334 B
PHP
<?php
|
|
/**
|
|
* SCSSPHP
|
|
*
|
|
* @copyright 2012-2019 Leaf Corcoran
|
|
*
|
|
* @license http://opensource.org/licenses/MIT MIT
|
|
*
|
|
* @link http://scssphp.github.io/scssphp
|
|
*/
|
|
|
|
namespace ScssPhp\ScssPhp\Exception;
|
|
|
|
/**
|
|
* Parser Exception
|
|
*
|
|
* @author Oleksandr Savchenko <traveltino@gmail.com>
|
|
*/
|
|
class ParserException extends \Exception
|
|
{
|
|
}
|