CaptchaException.java 299 Bytes
package com.huaheng.common.exception.user;

/**
 * 验证码错误异常类
 * 
 * @author huaheng
 */
public class CaptchaException extends UserException
{
    private static final long serialVersionUID = 1L;

    public CaptchaException()
    {
        super("user.jcaptcha.error", null);
    }
}