* @throws MissingResourceException If no key matches the given <em>errorCode</em>
*/
protected String getLocalizedErrorMessage(Locale locale, String errorCode) throws NullPointerException, MissingResourceException
{
// <todo>fetch packagename from somewhere</todo>
StringManager stringManager = StringManagerFactory.getPresentationStringManager("org.infoglue.cms.entities", locale);
// check if a specific error message exists - <todo/>
// nah, use the general error message
return stringManager.getString(errorCode);
}