152a898e29807bae5a969a3e2a0b1123b7cca587
[shipsimu.git] / application / ship-simu / exceptions / class_UnsupportedLimitationPartException.php
1 <?php
2
3 // An exception class for lost classes... ;-)
4 class UnsupportedLimitationPartException extends FrameworkException {
5         public function __construct ($str, $code) {
6                 // Add a message around the missing class
7                 $message = sprintf("Limitierungsinformation <u>%s</u> wird derzeit nicht unterst&uuml;tzt.", $str);
8
9                 // Call parent constructor
10                 parent::__construct($message, $code);
11         }
12 }
13
14 // [EOF]
15 ?>