mirror of
https://github.com/moodle/moodle.git
synced 2025-07-26 00:31:35 +02:00
13 lines
267 B
PHP
13 lines
267 B
PHP
<?php
|
|
|
|
namespace PhpXmlRpc\Exception;
|
|
|
|
use PhpXmlRpc\Exception as BaseExtension;
|
|
|
|
/**
|
|
* To be used for all errors related to the transport, which are not related to specifically to HTTP. Eg: can not open socket
|
|
*/
|
|
class TransportException extends BaseExtension
|
|
{
|
|
}
|