StateErrorException.php 242 B

123456789101112
  1. <?php
  2. namespace PhpXmlRpc\Exception;
  3. use PhpXmlRpc\Exception as BaseExtension;
  4. /**
  5. * Exception thrown when an object is in such a state that it can not fulfill execution of a method
  6. */
  7. class StateErrorException extends BaseExtension
  8. {
  9. }