Package org.apache.rave.exception

Examples of org.apache.rave.exception.EmailException


            return FreeMarkerTemplateUtils.processTemplateIntoString(configuration.getTemplate(templateName), templateData);
        } catch (IOException e) {
            if (log.isDebugEnabled()) {
                log.error("Error parsing email template" + templateName, e);
            }
            throw new EmailException("Username reminder: error parsing email template" + templateName);
        } catch (TemplateException e) {
            if (log.isDebugEnabled()) {
                log.error("failed to render email template " + templateName, e);
            }
            throw new EmailException("Username reminder: error rendering email template: " + templateName);
        }
    }
View Full Code Here

TOP

Related Classes of org.apache.rave.exception.EmailException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.