📄 communityhandleexception.java
字号:
/*
* 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -