30d312f15ee8f1f952328e219767f770e30881ec
[core.git] / inc / classes / exceptions / main / class_NoArrayException.php
1 <?php
2 /**
3  * @author              Roland Haeder <webmaster@ship-simu.org>
4  * @version             0.0.0
5  * @copyright   Copyright (c) 2007, 2008 Roland Haeder, this is free software
6  * @license             GNU GPL 3.0 or any newer version
7  * @link                http://www.ship-simu.org
8  *
9  * This program is free software: you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation, either version 3 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program. If not, see <http://www.gnu.org/licenses/>.
21  */
22 class NoArrayException extends FrameworkException {
23         /**
24          * The constructor
25          *
26          * @param       $message        Message from the exception
27          * @param       $code           Code number for the exception
28          * @return      void
29          */
30         public function __construct ($string, $code) {
31                 // Add a message around the missing class
32                 $message = sprintf("<span class=\"exception_reason\">%s</span> ist kein Array!",
33                         $string
34                 );
35
36                 // Call parent constructor
37                 parent::__construct($message, $code);
38         }
39 }
40
41 // [EOF]
42 ?>