CookieSizeLimitReachedException.php 593 B

12345678910111213141516171819202122
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Framework\Stdlib\Cookie;
  7. use Magento\Framework\Exception\LocalizedException;
  8. /**
  9. * CookieSizeLimitReachedException is thrown when detecting that a browser limit, or potential browser limit has been
  10. * reached regarding cookie limits.
  11. *
  12. * Limits can include the amount of data stored in an individual cookie as well as the number of cookies
  13. * set for the domain.
  14. *
  15. * @api
  16. * @since 100.0.2
  17. */
  18. class CookieSizeLimitReachedException extends LocalizedException
  19. {
  20. }