Subversion-Projekte lars-tiefland.prado

Revision

Details | Letzte Änderung | Log anzeigen | RSS feed

Revision Autor Zeilennr. Zeile
1 lars 1
<?php
2
/**
3
 * TimeTrackerException class file.
4
 *
5
 * @author Wei Zhuo <weizhuo[at]gmail[dot]com>
6
 * @link http://www.pradosoft.com/
7
 * @copyright Copyright &copy; 2005-2006 PradoSoft
8
 * @license http://www.pradosoft.com/license/
9
 * @version $Id: TimeTrackerException.php 1400 2006-09-09 03:13:44Z wei $
10
 * @package Demos
11
 */
12
 
13
/**
14
 * Generic time tracker application exception. Exception messages are saved in
15
 * "exceptions.txt"
16
 *
17
 * @author Wei Zhuo <weizhuo[at]gmail[dot]com>
18
 * @version $Id: TimeTrackerException.php 1400 2006-09-09 03:13:44Z wei $
19
 * @package Demos
20
 * @since 3.1
21
 */
22
class TimeTrackerException extends TException
23
{
24
	/**
25
	 * @return string path to the error message file
26
	 */
27
	protected function getErrorMessageFile()
28
	{
29
		return dirname(__FILE__).'/exceptions.txt';
30
	}
31
}
32
 
33
?>