%PDF- %PDF-
Direktori : /var/www/html/o91-api/vendor/maennchen/zipstream-php/src/Exception/ |
Current File : /var/www/html/o91-api/vendor/maennchen/zipstream-php/src/Exception/FileNotFoundException.php |
<?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."); } }