class_UnsupportedTemplateEngineException.php

Go to the documentation of this file.
00001 <?php
00024 class UnsupportedTemplateEngineException extends FrameworkException {
00032         public function __construct (FrameworkInterface $class, $code) {
00033                 // Add a message around the missing class
00034                 $message = sprintf("Template-Engine %s not (yet) supported.",
00035                         $class->__toString()
00036                 );
00037 
00038                 // Call parent constructor
00039                 parent::__construct($message, $code);
00040         }
00041 }
00042 
00043 // [EOF]
00044 ?>

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