* @package generis */ class common_exception_FileAlreadyExists extends common_Exception { // --- ASSOCIATIONS --- // --- ATTRIBUTES --- // --- OPERATIONS --- /** * Short description of method __construct * * @access public * @author Cédric Alfonsi, * @param string path * @return mixed */ public function __construct($path = "") { $message = 'A file/folder already exists at the location (' . $path . ')'; parent::__construct($message); } }