xref: /plugin/davcal/vendor/sabre/xml/lib/ParseException.php (revision a495d34c25233615fa25fba79abef99239c1dd50)
1<?php
2
3namespace Sabre\Xml;
4
5use
6    Exception;
7
8/**
9 * This is a base exception for any exception related to parsing xml files.
10 *
11 * @copyright Copyright (C) 2009-2015 fruux GmbH (https://fruux.com/).
12 * @author Evert Pot (http://evertpot.com/)
13 * @license http://sabre.io/license/ Modified BSD License
14 */
15class ParseException extends Exception {
16
17}
18