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