FaultResponseException.php 236 B

123456789101112
  1. <?php
  2. namespace PhpXmlRpc\Exception;
  3. use PhpXmlRpc\Exception as BaseExtension;
  4. /**
  5. * To be used when throwing exceptions instead of returning Response objects (future API?)
  6. */
  7. class FaultResponseException extends BaseExtension
  8. {
  9. }