* @return null if we do not find a registered Parser otherwise the Parser
* @throws DroidsException
*/
public Parser getParser(String contentType) throws DroidsException {
if (contentType == null) {
throw new ParserNotFoundException(contentType);
}
return getMap().get(contentType);
}