12345678910111213141516171819 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Signifyd\Model\MessageGenerators;
- use Magento\Framework\Exception\LocalizedException;
- /**
- * Common exception for Signifyd message generators.
- *
- * @api
- * @since 100.2.0
- */
- class GeneratorException extends LocalizedException
- {
- }
|