moodle/lib/phpxmlrpc/Exception/ServerException.php
2023-03-14 14:45:42 +11:00

13 lines
262 B
PHP

<?php
namespace PhpXmlRpc\Exception;
use PhpXmlRpc\Exception as BaseExtension;
/**
* Base exception for errors thrown by the server while trying to handle the requests, such as errors with the dispatch map
*/
class ServerException extends BaseExtension
{
}