00001 <?php 00024 class DatabaseUpdateSupportException extends DatabaseException { 00032 public function __construct (FrameworkInterface $class, $code) { 00033 // Generate message 00034 $message = sprintf("[%s:%d] Database updated not allowed for this class.", 00035 $class->__toString(), 00036 $this->getLine() 00037 ); 00038 00039 // Just call the parent constructor 00040 parent::__construct($message, $code); 00041 } 00042 } 00043 00044 // [EOF] 00045 ?>
1.5.6