]> git.mxchange.org Git - shipsimu.git/blob - ship-simu/application/ship-simu/exceptions/class_UnsupportedLimitationPartException.php
Initial import of current development status
[shipsimu.git] / ship-simu / 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 ?>