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

📄 backingstoreexception.java

📁 OSGI这是一个中间件,与UPNP齐名,是用于移植到嵌入式平台之上
💻 JAVA
字号:
/* * @(#)BackingStoreException.java   1.3 01/07/18 * $Header: /cvshome/repository/org/osgi/service/prefs/BackingStoreException.java,v 1.6 2002/09/20 11:55:57 pkriens Exp $ * * Open Services Gateway Initiative (OSGi) Confidential.  *  * (C) Copyright 1996-2001 Sun Microsystems, Inc.  *  * This source code is licensed to OSGi as MEMBER LICENSED MATERIALS  * under the terms of Section 3.2 of the OSGi MEMBER AGREEMENT. *  */package org.osgi.service.prefs;/** * Thrown to indicate that a preferences operation could not complete because * of a failure in the backing store, or a failure to contact the backing * store. * * @version $Revision: 1.6 $ * @author Open Services Gateway Initiative */public class BackingStoreException extends Exception {    /**     * Constructs a <tt>BackingStoreException</tt> with the specified detail message.     *     * @param s the detail message.     */    public BackingStoreException(String s) {        super(s);    }}

⌨️ 快捷键说明

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