a335bbd2eed7c2afcc3f85e75f35eb46c43392cb
[yaffs-website] / vendor / symfony / config / Util / Exception / InvalidXmlException.php
1 <?php
2 /*
3  * This file is part of the Symfony package.
4  *
5  * (c) Fabien Potencier <fabien@symfony.com>
6  *
7  * For the full copyright and license information, please view the LICENSE
8  * file that was distributed with this source code.
9  */
10
11 namespace Symfony\Component\Config\Util\Exception;
12
13 /**
14  * Exception class for when XML parsing with an XSD schema file path or a callable validator produces errors unrelated
15  * to the actual XML parsing.
16  *
17  * @author Ole Rößner <ole@roessner.it>
18  */
19 class InvalidXmlException extends XmlParsingException
20 {
21 }