summaryrefslogtreecommitdiff
path: root/demos/time-tracker/protected/APP_CODE/TimeTrackerException.php
blob: d715eefa5c5c1a4f72c6b57c247a8b59a3cddac7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?php

class TimeTrackerException extends TException
{
	/**
	 * @return string path to the error message file
	 */
	protected function getErrorMessageFile()
	{
		return dirname(__FILE__).'/exceptions.txt';
	}	
}

?>