1 Star 0 Fork 22

happygao521/WebJava

forked from 老馬/WebJava 
Create your Gitee Account
Explore and code with more than 14 million developers,Free private repositories !:)
Sign up
文件
This repository doesn't specify license. Please pay attention to the specific project description and its upstream code dependency when using it.
Clone or Download
InternalServerError500.java 410 Bytes
Copy Edit Raw Blame History
Ma authored 2015-06-12 09:41 +08:00 . 添加Demo
package Web;
/**
* 处理500错误
*
* @author Ma
*/
public class InternalServerError500 {
public static void set500(String string) {
Response.setContent("<h2>500 服务器方法生错误</h2>" + string);
Response.setStatus(500);
}
/**
* 触发500异常
*/
public static void set500(Exception ex) {
InternalServerError500.set500(ex.toString());
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/cyw2013/WebJava.git
git@gitee.com:cyw2013/WebJava.git
cyw2013
WebJava
WebJava
master

Search