mirror of
https://github.com/moodle/moodle.git
synced 2025-07-25 00:02:18 +02:00
13 lines
236 B
PHP
13 lines
236 B
PHP
<?php
|
|
|
|
namespace PhpXmlRpc\Exception;
|
|
|
|
use PhpXmlRpc\Exception as BaseExtension;
|
|
|
|
/**
|
|
* To be used when throwing exceptions instead of returning Response objects (future API?)
|
|
*/
|
|
class FaultResponseException extends BaseExtension
|
|
{
|
|
}
|