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 ?>
1.5.6