RestException.php 527 B

12345678910111213141516171819
  1. <?php
  2. /**
  3. * Refer to LICENSE.txt distributed with the Temando Shipping module for notice of license
  4. */
  5. namespace Temando\Shipping\Rest\Exception;
  6. use Temando\Shipping\Webservice\Exception\HttpException;
  7. /**
  8. * Temando Rest Webservice Exception
  9. *
  10. * @package Temando\Shipping\Rest
  11. * @author Christoph Aßmann <christoph.assmann@netresearch.de>
  12. * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
  13. * @link http://www.temando.com/
  14. */
  15. class RestException extends HttpException
  16. {
  17. }