⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 invalidstoreclassexception.java

📁 很棒的web服务器源代码
💻 JAVA
字号:
// InvalidStoreClassException.java// $Id: InvalidStoreClassException.java,v 1.2 2000/08/16 21:37:54 ylafon Exp $// (c) COPYRIGHT MIT and INRIA, 1996-1997.// Please first read the full copyright statement in file COPYRIGHT.htmlpackage org.w3c.tools.resources.store;/** * A store is being loaded by a class who didn't write it. */public class InvalidStoreClassException extends Exception {    /**     * The class willing to load that store.     */    protected String loader = null;    /**     * The class willing to unload that store.     */    protected String saver = null;    /**     * Get the loader's class name.     * @return A String giving the full name of the loader's class.     */    public String getLoaderClassName() {	return loader;    }    /**     * Get the saver's class name.     * @return A String giving the full name of the saver's class.     */    public String getSaverClassName() {	return saver;    }    public InvalidStoreClassException(String loadingcls, String expectedcls) {	super("invalid class: "+loadingcls+", supposed to be: "+expectedcls);	this.loader = loadingcls;	this.saver  = expectedcls;    }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -