| Current Path : /var/www/surf/TYPO3/vendor/typo3fluid/fluid/src/Core/Parser/ |
| Current File : /var/www/surf/TYPO3/vendor/typo3fluid/fluid/src/Core/Parser/PassthroughSourceException.php |
<?php
/*
* This file belongs to the package "TYPO3 Fluid".
* See LICENSE.txt that was shipped with this package.
*/
namespace TYPO3Fluid\Fluid\Core\Parser;
/**
* Exception which when thrown causes the template rendering
* to output the full source of the Fluid template file rather
* than allow it to be parsed.
*
* @api
*/
class PassthroughSourceException extends \TYPO3Fluid\Fluid\Core\Exception
{
/**
* @var string
*/
protected $source;
/**
* @return string
*/
public function getSource()
{
return $this->source;
}
/**
* @param string $source
*/
public function setSource($source)
{
$this->source = $source;
}
}