1 <?php
2
3 /* --------------------------------------------------------------
4 FileNotFoundException.inc.php 2015-12-09
5 Gambio GmbH
6 http://www.gambio.de
7 Copyright (c) 2015 Gambio GmbH
8 Released under the GNU General Public License (Version 2)
9 [http://www.gnu.org/licenses/gpl-2.0.html]
10 --------------------------------------------------------------
11 */
12
13 /**
14 * Class FileNotFoundException
15 *
16 * @category System
17 * @package Shared
18 * @subpackage Exceptions
19 */
20 class FileNotFoundException extends \Exception
21 {
22 public function __construct($errorMessage = 'File was not found')
23 {
24 parent::__construct($errorMessage);
25 }
26 }