Error.php 513 B

12345678910111213141516171819202122232425
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Shipping\Model\Tracking\Result;
  7. class Error extends \Magento\Shipping\Model\Tracking\Result\AbstractResult
  8. {
  9. /**
  10. * @return array
  11. */
  12. public function getAllData()
  13. {
  14. return $this->_data;
  15. }
  16. /**
  17. * @return \Magento\Framework\Phrase
  18. */
  19. public function getErrorMessage()
  20. {
  21. return __('Tracking information is unavailable.');
  22. }
  23. }