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

📄 recordstorenotopenexception.java

📁 用于移动设备上的java虚拟机源代码
💻 JAVA
字号:
/* * @(#)RecordStoreNotOpenException.java	1.11 02/07/24 @(#) * * Portiona Copyright (c) 2000-2002 Sun Microsystems, Inc. All Rights Reserved. * * Copyright 2000 Motorola, Inc. All Rights Reserved. * This notice does not imply publication. */package javax.microedition.rms; /*** Thrown to indicate that an operation was attempted on a closed record store.** @since MIDP 1.0*/public class RecordStoreNotOpenException    extends RecordStoreException{    /**     * Constructs a new <code>RecordStoreNotOpenException</code> with the     * specified detail message.     *     * @param message the detail message     */    public RecordStoreNotOpenException(String message) {	super(message);    }         /**      * Constructs a new <code>RecordStoreNotOpenException</code> with no detail      * message.      */     public RecordStoreNotOpenException() {    } }

⌨️ 快捷键说明

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