/**
  * @see parent::validate_raw_record()
  */
 protected function validate_raw_record(stdClass $record)
 {
     if ($record->weight != 1) {
         throw new coding_exception('Invalid weight of the reference example submission assessment');
     }
     parent::validate_raw_record($record);
 }