<?php

declare(strict_types=1);

namespace Autogedal\CookieLimit\Exception;

use Magento\Framework\Exception\LocalizedException;

/**
 * CookieCountLimitReachedException is thrown when detecting that a browser limit, or potential browser limit, for the
 * number of cookies would be reached or exceeded.
 *
 * This is a proactive check to prevent browsers from rejecting cookies due to count limits.
 */
class CookieCountLimitReachedException extends LocalizedException
{
}