123456789101112131415161718192021 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\CatalogSearch\Model\Indexer\Scope;
- use Magento\Framework\Exception\LocalizedException;
- /**
- * Exception for situation where used state which is not defined in configuration
- *
- * @api
- * @since 100.2.0
- * @deprecated 101.0.0
- * @see \Magento\ElasticSearch
- */
- class UnknownStateException extends LocalizedException
- {
- }
|