EEPROMex "Exceeded maximum number of writes"

Does someone understand how the EEPROMex work???

if I put to the loop

for (int i=0; i<10;i++)
{
AktivniAlarmi_temp[ i ]= EEPROM.readByte(AktivniAlarmi_ADR + i);
}

its all ok...no message on the serial monitor

if I put the same thing

EEPROM.readBlock(AktivniAlarmi_ADR, AktivniAlarmi_temp, 10);

on the serial monitor appear the message after few seconds:
"Exceeded maximum number of writes

I am just reading from EEPROM..Why the write exceeding message???
does someone understand this??

thank you