Drupal investigation

ExceptionHandler.php 858B

12345678910111213141516171819202122232425262728
  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\HttpKernel\Debug;
  11. @trigger_error('The '.__NAMESPACE__.'\ExceptionHandler class is deprecated since version 2.3 and will be removed in 3.0. Use the Symfony\Component\Debug\ExceptionHandler class instead.', E_USER_DEPRECATED);
  12. use Symfony\Component\Debug\ExceptionHandler as DebugExceptionHandler;
  13. /**
  14. * ExceptionHandler converts an exception to a Response object.
  15. *
  16. * @author Fabien Potencier <fabien@symfony.com>
  17. *
  18. * @deprecated since version 2.3, to be removed in 3.0. Use the same class from the Debug component instead.
  19. */
  20. class ExceptionHandler extends DebugExceptionHandler
  21. {
  22. }