apm.modules.sys.security.CaptchaException.java Source code

Java tutorial

Introduction

Here is the source code for apm.modules.sys.security.CaptchaException.java

Source

/**
 * Copyright © 2012-2013 Zaric All rights reserved.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 */
package apm.modules.sys.security;

import org.apache.shiro.authc.AuthenticationException;

/**
 * ???
 * <p>@author zhangzuoqiang
 * @version 2013-5-19
 */
public class CaptchaException extends AuthenticationException {

    private static final long serialVersionUID = 1L;

    public CaptchaException() {
        super();
    }

    public CaptchaException(String message, Throwable cause) {
        super(message, cause);
    }

    public CaptchaException(String message) {
        super(message);
    }

    public CaptchaException(Throwable cause) {
        super(cause);
    }

}