2016-04-30 23:23:35 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* FileNotFoundException
|
|
|
|
*
|
|
|
|
* PHP version 5
|
|
|
|
*
|
|
|
|
* @category Exception
|
|
|
|
* @package FileNotFoundException
|
|
|
|
* @author Jim Wigginton <terrafrost@php.net>
|
|
|
|
* @copyright 2015 Jim Wigginton
|
|
|
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
|
|
|
* @link http://phpseclib.sourceforge.net
|
|
|
|
*/
|
|
|
|
|
2019-12-18 14:00:20 +01:00
|
|
|
namespace tgseclib\Exception;
|
2016-04-30 23:23:35 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* FileNotFoundException
|
|
|
|
*
|
|
|
|
* @package FileNotFoundException
|
|
|
|
* @author Jim Wigginton <terrafrost@php.net>
|
|
|
|
*/
|
|
|
|
class FileNotFoundException extends \RuntimeException
|
|
|
|
{
|
|
|
|
}
|