for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace TYPO3Fluid\Fluid\Core\Parser;
/*
* This file belongs to the package "TYPO3 Fluid".
* See LICENSE.txt that was shipped with this package.
*/
/**
* 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;