return Util.fillParams(getBundle().getString(aMsgKey), someParams);
}
public String i18n(Throwable e) {
if (e instanceof ClientException) {
ClientException e1 = (ClientException) e;
return i18n("ClientException." + e1.getErrorCode(), e1.getParameters());
}
return i18n("common.technicalError", new Object[] { e.getMessage() });
}