📄 errormaker.jsp
字号:
<%-- errorMaker.jsp --%>
<%@ page session="false" %> <%-- Don't send needless cookies --%>
<%@ page errorPage="/errorTaker.jsp" %> <%-- General error handling page --%>
<%-- All we're good for is throwing an exception --%>
<%
if (System.currentTimeMillis() > 0) {
throw new Exception("oops");
}
%>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -