Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
gilour
/
vendor
/
maennchen
/
zipstream-php
/
src
/
Exception
:
FileNotFoundException.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?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."); } }