]>
git.immae.eu Git - github/wallabag/wallabag.git/blob - vendor/twig/twig/lib/Twig/Error/Loader.php
68efb574a1e67c52b0a54cb3fe39a848f497d4af
4 * This file is part of Twig.
6 * (c) 2010 Fabien Potencier
8 * For the full copyright and license information, please view the LICENSE
9 * file that was distributed with this source code.
13 * Exception thrown when an error occurs during template loading.
15 * Automatic template information guessing is always turned off as
16 * if a template cannot be loaded, there is nothing to guess.
17 * However, when a template is loaded from another one, then, we need
18 * to find the current context and this is automatically done by
19 * Twig_Template::displayWithErrorHandling().
21 * This strategy makes Twig_Environment::resolveTemplate() much faster.
23 * @author Fabien Potencier <fabien@symfony.com>
25 class Twig_Error_Loader
extends Twig_Error
27 public function __construct($message, $lineno = -1, $filename = null, Exception
$previous = null)
29 parent
::__construct($message, false, false, $previous);