]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/LRDD/extlib/XML/XRD/Serializer/Exception.php
Implemented WebFinger and replaced our XRD with PEAR XML_XRD
[quix0rs-gnu-social.git] / plugins / LRDD / extlib / XML / XRD / Serializer / Exception.php
1 <?php
2 /**
3  * Part of XML_XRD
4  *
5  * PHP version 5
6  *
7  * @category XML
8  * @package  XML_XRD
9  * @author   Christian Weiske <cweiske@php.net>
10  * @license  http://www.gnu.org/copyleft/lesser.html LGPL
11  * @link     http://pear.php.net/package/XML_XRD
12  */
13
14 require_once 'XML/XRD/Exception.php';
15
16 /**
17  * XML_XRD exception that's thrown when saving an XRD file fails.
18  *
19  * @category XML
20  * @package  XML_XRD
21  * @author   Christian Weiske <cweiske@php.net>
22  * @license  http://www.gnu.org/copyleft/lesser.html LGPL
23  * @version  Release: @package_version@
24  * @link     http://pear.php.net/package/XML_XRD
25  */
26 class XML_XRD_Serializer_Exception extends Exception implements XML_XRD_Exception
27 {
28 }
29 ?>