Verzeichnisstruktur phpBB-3.3.15
- Veröffentlicht
- 28.08.2024
So funktioniert es
|
Auf das letzte Element klicken. Dies geht jeweils ein Schritt zurück |
Auf das Icon klicken, dies öffnet das Verzeichnis. Nochmal klicken schließt das Verzeichnis. |
|
(Beispiel Datei-Icons)
|
Auf das Icon klicken um den Quellcode anzuzeigen |
InvalidXmlException.php
01 <?php
02 /*
03 * This file is part of the Symfony package.
04 *
05 * (c) Fabien Potencier <fabien@symfony.com>
06 *
07 * For the full copyright and license information, please view the LICENSE
08 * file that was distributed with this source code.
09 */
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 }
22