ServerException.php 262 B

123456789101112
  1. <?php
  2. namespace PhpXmlRpc\Exception;
  3. use PhpXmlRpc\Exception as BaseExtension;
  4. /**
  5. * Base exception for errors thrown by the server while trying to handle the requests, such as errors with the dispatch map
  6. */
  7. class ServerException extends BaseExtension
  8. {
  9. }