communityhandleexception.java
来自「java开发的经典框架assh,做的一个系统!」· Java 代码 · 共 47 行
JAVA
47 行
/*
* Created on 2005-6-9
*
*/
package com.caolulu.assh.exception;
/**
* @author tianyi.gong
*
*/
public class CommunityHandleException extends Exception {
/**
*
*/
public CommunityHandleException() {
super();
// TODO Auto-generated constructor stub
}
/**
* @param message
*/
public CommunityHandleException(String message) {
super(message);
// TODO Auto-generated constructor stub
}
/**
* @param cause
*/
public CommunityHandleException(Throwable cause) {
super(cause);
// TODO Auto-generated constructor stub
}
/**
* @param message
* @param cause
*/
public CommunityHandleException(String message, Throwable cause) {
super(message, cause);
// TODO Auto-generated constructor stub
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?