pathdisallowedexception.java
来自「一个使用的搜索引擎」· Java 代码 · 共 22 行
JAVA
22 行
package ir.webutils;/** * PathDisallowedException.java * Thrown to indicate that a client program tried to access a path that was disallowed by either a * robots.txt file or a robots META tag. * * @author Ted Wild */public class PathDisallowedException extends Exception { public PathDisallowedException() { super(); } public PathDisallowedException(String msg) { super(msg); }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?