FailureToSendException.php 478 B

12345678910111213141516171819
  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. * FailureToSendException is thrown when trying to set a cookie but the response has already been sent, making it
  10. * impossible to send any cookie information back to the client.
  11. *
  12. * @api
  13. * @since 100.0.2
  14. */
  15. class FailureToSendException extends LocalizedException
  16. {
  17. }