1
0

TransportException.php 267 B

123456789101112
  1. <?php
  2. namespace PhpXmlRpc\Exception;
  3. use PhpXmlRpc\Exception as BaseExtension;
  4. /**
  5. * To be used for all errors related to the transport, which are not related to specifically to HTTP. Eg: can not open socket
  6. */
  7. class TransportException extends BaseExtension
  8. {
  9. }