A super easy PHP Framework for web development!
				https://github.com/exacti/phacil-framework
			
			
		
			You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							45 lines
						
					
					
						
							771 B
						
					
					
				
			
		
		
	
	
							45 lines
						
					
					
						
							771 B
						
					
					
				<?php
 | 
						|
 | 
						|
/**
 | 
						|
 * Smarty compiler exception class
 | 
						|
 *
 | 
						|
 * @package Smarty
 | 
						|
 */
 | 
						|
class SmartyCompilerException extends SmartyException
 | 
						|
{
 | 
						|
    /**
 | 
						|
     * @return string
 | 
						|
     */
 | 
						|
    public function __toString()
 | 
						|
    {
 | 
						|
        return ' --> Smarty Compiler: ' . $this->message . ' <-- ';
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * The line number of the template error
 | 
						|
     *
 | 
						|
     * @type int|null
 | 
						|
     */
 | 
						|
    public $line = null;
 | 
						|
 | 
						|
    /**
 | 
						|
     * The template source snippet relating to the error
 | 
						|
     *
 | 
						|
     * @type string|null
 | 
						|
     */
 | 
						|
    public $source = null;
 | 
						|
 | 
						|
    /**
 | 
						|
     * The raw text of the error message
 | 
						|
     *
 | 
						|
     * @type string|null
 | 
						|
     */
 | 
						|
    public $desc = null;
 | 
						|
 | 
						|
    /**
 | 
						|
     * The resource identifier or template name
 | 
						|
     *
 | 
						|
     * @type string|null
 | 
						|
     */
 | 
						|
    public $template = null;
 | 
						|
}
 | 
						|
 |