try {
tEntry.setContent((String) value);
} catch (ElementDeletedException ex) {
String msg = "Entry was already deleted and should not be shown here, this is a bug";
logger.fatal(msg, ex);
throw new SysRuntimeException(msg, ex);
}
} else {
throw new SysRuntimeException(
"Invalid attempt to modify unknown property "
+ property);
}
this.pwTableEditor.refresh();
} else {
throw new SysRuntimeException(
"Invalid attempt to modify an unknown object " + element);
}
}