ValueErrorException.php 256 B

123456789101112
  1. <?php
  2. namespace PhpXmlRpc\Exception;
  3. use PhpXmlRpc\Exception as BaseExtension;
  4. /**
  5. * Exception thrown when an argument passed to a function or method has an unsupported value (but its type is ok)
  6. */
  7. class ValueErrorException extends BaseExtension
  8. {
  9. }