All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.webframe.web.exception.WebFrameException Maven / Gradle / Ivy

The newest version!

package org.webframe.web.exception;

/**
 * Web框架顶级异常类,框架所以自定义异常需集成该类
 * 
 * @author 黄国庆 
 * @version $Id: codetemplates.xml,v 1.1 2009/09/07 08:48:12 Exp $ Create: 2011-6-28 下午08:20:44
 */
public class WebFrameException extends Exception {

	/**
	 * 
	 */
	private static final long	serialVersionUID	= 2536571070207241036L;

	public WebFrameException(String msg) {
		super("========>>> " + msg);
	}

	public WebFrameException(String msg, Throwable cause) {
		super("========>>> " + msg, cause);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy