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

13 lines
256 B
PHP

<?php
namespace PhpXmlRpc\Exception;
use PhpXmlRpc\Exception as BaseExtension;
/**
* Exception thrown when an argument passed to a function or method has an unsupported value (but its type is ok)
*/
class ValueErrorException extends BaseExtension
{
}