mirror of
https://github.com/moodle/moodle.git
synced 2025-06-04 15:15:25 +02:00
13 lines
262 B
PHP
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
|
|
{
|
|
}
|