IndexTableNotExistException.php 502 B

12345678910111213141516171819202122
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\CatalogSearch\Model\Indexer\Scope;
  7. use Magento\Framework\Exception\LocalizedException;
  8. /**
  9. * Exception which represents situation where temporary index table should be used somewhere,
  10. * but it does not exist in a database
  11. *
  12. * @api
  13. * @since 100.2.0
  14. * @deprecated 101.0.0
  15. * @see \Magento\ElasticSearch
  16. */
  17. class IndexTableNotExistException extends LocalizedException
  18. {
  19. }