酒店预订平台
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 
 
 
 

22 righe
527 B

  1. <?php
  2. /*
  3. * This file is part of the Symfony package.
  4. *
  5. * (c) Fabien Potencier <fabien@symfony.com>
  6. *
  7. * For the full copyright and license information, please view the LICENSE
  8. * file that was distributed with this source code.
  9. */
  10. namespace Symfony\Component\HttpFoundation\Exception;
  11. /**
  12. * The HTTP request contains headers with conflicting information.
  13. *
  14. * @author Magnus Nordlander <magnus@fervo.se>
  15. */
  16. class ConflictingHeadersException extends \UnexpectedValueException implements RequestExceptionInterface
  17. {
  18. }