File "FileNotFoundException.php"

Full Path: /home/isoftco/public_html/hrm/vendor/maennchen/zipstream-php/src/Exception/FileNotFoundException.php
File size: 494 bytes
MIME-type: text/x-php
Charset: utf-8

<?php
namespace ZipStream\Exception;
use ZipStream\Exception;

/**
 * This Exception gets invoked if a file wasn't found
 * 
 * @author Jonatan Männchen <jonatan@maennchen.ch>
 * @copyright Copyright (c) 2014, Jonatan Männchen
 */
class FileNotFoundException extends Exception {
	/**
	 * Constructor of the Exception
	 * 
	 * @param String $path - The path which wasn't found
	 */
	public function __construct($path) {
		parent::__construct("Ths file with the path $path wasn't found.");
	}
}