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

📄 recordstorefullexception.java

📁 有关j2me的很好的例子可以研究一下
💻 JAVA
字号:
/* * @(#)RecordStoreFullException.java	1.7 01/06/19 * Copyright (c) 2000-2001 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 an operation could not be completed because the  * record store system storage is full.  *  * @version MIDP 1.0 * @author Jim Van Peursem  */public class RecordStoreFullException     extends RecordStoreException {     /**      * Constructs a new <code>RecordStoreFullException</code> with the      * specified detail message.      *      * @param message the detail message.      */    public RecordStoreFullException(String message) {	super(message);    }         /**      * Constructs a new <code>RecordStoreFullException</code> with no detail      * message.      */    public RecordStoreFullException() {    } } 

⌨️ 快捷键说明

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