jcaptchanullexception.java

来自「移动彩信管理平台」· Java 代码 · 共 32 行

JAVA
32
字号
package com.my7g.zj.mobile.mms.exception;

import org.acegisecurity.AuthenticationException;

@SuppressWarnings("serial")
public class JcaptchaNullException extends AuthenticationException {

	/**
	 * Constructs a <code>JcaptchaNullException</code> with the specified
	 * message.
	 * 
	 * @param msg
	 *            the detail message
	 */
	public JcaptchaNullException(String msg) {
		super(msg);
	}

	/**
	 * Constructs a <code>ProviderNotFoundException</code> with the specified
	 * message and root cause.
	 * 
	 * @param msg
	 *            the detail message
	 * @param t
	 *            root cause
	 */
	public JcaptchaNullException(String msg, Throwable t) {
		super(msg, t);
	}
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?