*/
public Message getMessage(String sName) throws MetadataLookupException
{
if (sName == null)
{
throw new MetadataLookupException("err.meta.integration.messageTableLookup", "", this);
}
Message message = (Message)m_messageMap.get(sName);
if (message == null)
{
throw new MetadataLookupException("err.meta.integration.messageTableLookup", sName, this);
}
return message;
}