mirror of
https://github.com/moodle/moodle.git
synced 2025-07-26 00:31:35 +02:00
13 lines
242 B
PHP
13 lines
242 B
PHP
<?php
|
|
|
|
namespace PhpXmlRpc\Exception;
|
|
|
|
use PhpXmlRpc\Exception as BaseExtension;
|
|
|
|
/**
|
|
* Exception thrown when an object is in such a state that it can not fulfill execution of a method
|
|
*/
|
|
class StateErrorException extends BaseExtension
|
|
{
|
|
}
|