1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
|
<?php
namespace Rain\Tpl;
/**
* Basic Rain tpl exception.
*/
class Exception extends \Exception {
/**
* Path of template file with error.
*/
protected $templateFile = '';
/**
* Handles path of template file with error.
*
* @param string | null $templateFile
* @return \Rain\Tpl_Exception | string
*/
public function templateFile($templateFile){
if(is_null($templateFile))
return $this->templateFile;
$this->templateFile = (string) $templateFile;
return $this;
}
}
// -- end
|