com.sjtu.icare.modules.sys.utils.security.CaptchaException.java Source code

Java tutorial

Introduction

Here is the source code for com.sjtu.icare.modules.sys.utils.security.CaptchaException.java

Source

/**
 * Copyright © 2012-2013 Laoban All rights reserved.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 */
package com.sjtu.icare.modules.sys.utils.security;

import org.apache.shiro.authc.AuthenticationException;

/**
 * ???
 * @author ThinkGem
 * @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);
    }

}