Subversion-Projekte lars-tiefland.prado

Revision

Details | Letzte Änderung | Log anzeigen | RSS feed

Revision Autor Zeilennr. Zeile
1 lars 1
<?php
2
/**
3
 * BlogException class file
4
 *
5
 * @author Qiang Xue <qiang.xue@gmail.com>
6
 * @link http://www.pradosoft.com/
7
 * @copyright Copyright &copy; 2006 PradoSoft
8
 * @license http://www.pradosoft.com/license/
9
 * @version $Id: BlogException.php 1398 2006-09-08 19:31:03Z xue $
10
 */
11
 
12
/**
13
 * BlogException class
14
 *
15
 * @author Qiang Xue <qiang.xue@gmail.com>
16
 * @link http://www.pradosoft.com/
17
 * @copyright Copyright &copy; 2006 PradoSoft
18
 * @license http://www.pradosoft.com/license/
19
 */
20
class BlogException extends THttpException
21
{
22
	/**
23
	 * @return string path to the error message file
24
	 */
25
	protected function getErrorMessageFile()
26
	{
27
		return dirname(__FILE__).'/messages.txt';
28
	}
29
}
30
 
31
?>