Java tutorial
/** * Copyright © 2012-2013 <a href="https://github.com/free lance/infosys">infosys</a> All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); */ package com.heimaide.server.common.security; import org.apache.shiro.authc.AuthenticationException; /** * ??? * @author free lance * @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); } }