* @package tao */ class tao_models_classes_FileNotFoundException extends common_Exception { private $path; public function __construct($path) { $this->path = $path; parent::__construct('File ' . $path . ' not found'); } public function getFilePath() { return $this->path; } }