UnknownStateException.php 445 B

123456789101112131415161718192021
  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 for situation where used state which is not defined in configuration
  10. *
  11. * @api
  12. * @since 100.2.0
  13. * @deprecated 101.0.0
  14. * @see \Magento\ElasticSearch
  15. */
  16. class UnknownStateException extends LocalizedException
  17. {
  18. }