recordstorefullexception.java

来自「用于移动设备上的java虚拟机源代码」· Java 代码 · 共 39 行

JAVA
39
字号
/* * @(#)RecordStoreFullException.java	1.12 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 an operation could not be completed because the* record store system storage is full.** @since MIDP 1.0*/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 + =
减小字号Ctrl + -
显示快捷键?