multiplelockexception.java
来自「很棒的web服务器源代码」· Java 代码 · 共 28 行
JAVA
28 行
// MultipleLockException.java// $Id: MultipleLockException.java,v 1.2 2000/08/16 21:37:53 ylafon Exp $// (c) COPYRIGHT MIT and INRIA, 1996.// Please first read the full copyright statement in file COPYRIGHT.htmlpackage org.w3c.tools.resources;/** * The resource store is unable to restore a resource. */public class MultipleLockException extends Exception { int nb = 0; public int getNbLock() { return nb; } public MultipleLockException(int nb, Resource resource, String msg) { super(nb+" locks on "+resource.getIdentifier()+" "+msg); this.nb = nb; }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?