class_NoArrayCreatedException.php

Go to the documentation of this file.
00001 <?php
00026 class NoArrayCreatedException extends FrameworkException {
00034         public function __construct (array $array, $code) {
00035                 // Add a message around the missing class
00036                 $message = sprintf("[%s:%d] <span class=\"exception_reason\">%s</span> ist kein erstelltes Objekt.",
00037                         $array[0]->__toString(),
00038                         $this->getLine(),
00039                         $array[1]
00040                 );
00041 
00042                 // Call parent constructor
00043                 parent::__construct($message, $code);
00044         }
00045 }
00046 
00047 // [EOF]
00048 ?>

Generated on Mon Dec 8 01:06:45 2008 for Ship-Simulator by  doxygen 1.5.6