summaryrefslogtreecommitdiff
path: root/demos/blog/protected/Common/BlogException.php
blob: ab8020d11a54f373a08e84fe2f38bc7817fd2860 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?php

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

?>