* @throws ServletException
* @throws Exception
*/
public Profile getProfile(Request theRequest)
throws IOException, ServletException, Exception {
Profile theProfile = null;
try {
CocoonServletRequest servletRequest = new CocoonServletRequest(theRequest);
theProfile = new Profile(servletRequest);
} catch (Exception e) {
getLogger().error("DELI Exception while retrieving profile: ", e);
throw e;
}
return theProfile;