forumstylenotfoundexception.java

来自「BBS论坛设计JSP+MYSQL」· Java 代码 · 共 36 行

JAVA
36
字号
package com.bcxy.bbs.forum;

/**
 * Title:
 * Description:
 * Copyright:
 * Company: www.liyunet.com
 * 
 * @author lishujiang	
 * @version 1.0
 */

public class ForumStyleNotFoundException extends Exception {

	public ForumStyleNotFoundException() {
		super();
		// TODO Auto-generated constructor stub
	}

	public ForumStyleNotFoundException(String message) {
		super(message);
		// TODO Auto-generated constructor stub
	}

	public ForumStyleNotFoundException(String message, Throwable cause) {
		super(message, cause);
		// TODO Auto-generated constructor stub
	}

	public ForumStyleNotFoundException(Throwable cause) {
		super(cause);
		// TODO Auto-generated constructor stub
	}

}

⌨️ 快捷键说明

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