* @link https://github.com/pradosoft/prado * @copyright Copyright © 2005-2006 PradoSoft * @license https://github.com/pradosoft/prado/blob/master/COPYRIGHT * @package Demos */ /** * Generic time tracker application exception. Exception messages are saved in * "exceptions.txt" * * @author Wei Zhuo * @package Demos * @since 3.1 */ class TimeTrackerException extends TException { /** * @return string path to the error message file */ protected function getErrorMessageFile() { return dirname(__FILE__).'/exceptions.txt'; } }