. */ namespace App\Exceptions; use Throwable; use Twig\Error\Error; class TwigModeException extends \RuntimeException { public function __construct(Error $previous = null) { parent::__construct($previous->getMessage(), 0, $previous); } }