Example usage for com.liferay.portal.kernel.captcha CaptchaConfigurationException CaptchaConfigurationException

List of usage examples for com.liferay.portal.kernel.captcha CaptchaConfigurationException CaptchaConfigurationException

Introduction

In this page you can find the example usage for com.liferay.portal.kernel.captcha CaptchaConfigurationException CaptchaConfigurationException.

Prototype

public CaptchaConfigurationException(Throwable cause) 

Source Link

Usage

From source file:com.liferay.login.web.internal.portlet.action.CreateAccountMVCActionCommand.java

License:Open Source License

protected CaptchaConfiguration getCaptchaConfiguration() throws CaptchaConfigurationException {

    try {//from w w  w  .  j  av  a  2 s  . com
        return _configurationProvider.getSystemConfiguration(CaptchaConfiguration.class);
    } catch (Exception e) {
        throw new CaptchaConfigurationException(e);
    }
}