예제 #1
0
파일: validate.php 프로젝트: relip/xe-core
 /**
 	@brief Composes a message in the format:
 
 	<pre>
 	file_name (line_no):
 		message
 	</pre>
 	@developer Arnia Software
 
 	@return
 	@param $file
 	@param $line_no
 	@param $message
 	@access
 */
 public function __construct($file, $line_no, $message)
 {
     parent::__construct("{$file}({$line_no}):\n\t{$message}");
     $this->xml_file = $file;
     $this->xml_line_no = $line_no;
     $this->xml_message = $message;
 }