]> git.mxchange.org Git - shipsimu.git/blob - ship-simu/application/ship-simu/exceptions/class_TotalPriceNotCalculatedException.php
Initial import of current development status
[shipsimu.git] / ship-simu / application / ship-simu / exceptions / class_TotalPriceNotCalculatedException.php
1 <?php
2
3 // An exception class for lost classes... ;-)
4 class TotalPriceNotCalculatedException extends FrameworkException {
5         public function __construct ($class, $code) {
6                 // Add a message around the missing class
7                 $message = sprintf("[%s:] Gesamtpreis ist nicht ermittelbar.",
8                         $class->__toString()
9                 );
10
11                 // Call parent constructor
12                 parent::__construct($message, $code);
13         }
14 }
15
16 // [EOF]
17 ?>