00001 <?php 00026 class NoObjectException extends FrameworkException { 00034 public function __construct ($string, $code) { 00035 // Add a message around the missing class 00036 $message = sprintf("<span class=\"exception_reason\">%s</span> ist kein Objekt!", 00037 $string 00038 ); 00039 00040 // Call parent constructor 00041 parent::__construct($message, $code); 00042 } 00043 } 00044 00045 // [EOF] 00046 ?>
1.5.6