* @copyright Since 2007 PrestaShop SA and Contributors * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) */ namespace PrestaShop\PrestaShop\Core\Domain\SpecificPrice\Exception; use DomainException; use PrestaShop\PrestaShop\Core\Domain\Product\SpecificPrice\Exception\SpecificPriceException as ProductSpecificPriceException; @trigger_error( sprintf( '%s is deprecated since version 8.0.0 and will be removed in the next major version.', SpecificPriceException::class ), E_USER_DEPRECATED ); /** * @deprecated since 8.0.0 and will be removed in the next major version. * @see ProductSpecificPriceException */ class SpecificPriceException extends DomainException { }