📄 invalidresourceexception.java
字号:
// InvalidResourceException.java// $Id: InvalidResourceException.java,v 1.4 2000/08/16 21:37:52 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 is no more a valide resource. */public class InvalidResourceException extends Exception { public InvalidResourceException(String id, String msg) { super("["+id+"] loadResource failed: "+msg); } public InvalidResourceException(String parent, String child, String msg) { super("["+parent+" , "+child+"] registerResource failed: "+msg); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -