httpparserexception.java
来自「很棒的web服务器源代码」· Java 代码 · 共 31 行
JAVA
31 行
// HttpParserException.java// $Id: HttpParserException.java,v 1.6 2000/08/16 21:38:00 ylafon Exp $// (c) COPYRIGHT MIT and INRIA, 1996.// Please first read the full copyright statement in file COPYRIGHT.htmlpackage org.w3c.www.http;import org.w3c.www.mime.MimeParserException;public class HttpParserException extends MimeParserException { HttpRequestMessage req = null; public boolean hasRequest() { return (req != null); } public HttpRequestMessage getRequest() { return req; } public HttpParserException(String msg) { super(msg); } public HttpParserException(String msg, HttpRequestMessage req) { super(msg); this.req = req; }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?