com.oms.modules.sys.security.CaptchaException.java Source code

Java tutorial

Introduction

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

Source

/**
 * Copyright &copy; 2012-2013 <a href="https://github.com/thinkgem/jeesite">JeeSite</a> All rights reserved.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 */
package com.oms.modules.sys.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);
    }

}