vendor/twig/twig/src/Error/RuntimeError.php line 20

Open in your IDE?
  1. <?php
  2. /*
  3. * This file is part of Twig.
  4. *
  5. * (c) Fabien Potencier
  6. * (c) Armin Ronacher
  7. *
  8. * For the full copyright and license information, please view the LICENSE
  9. * file that was distributed with this source code.
  10. */
  11. namespace Twig\Error;
  12. /**
  13. * Exception thrown when an error occurs at runtime.
  14. *
  15. * @author Fabien Potencier <fabien@symfony.com>
  16. */
  17. class RuntimeError extends Error
  18. {
  19. }
  20. class_alias('Twig\Error\RuntimeError', 'Twig_Error_Runtime');