invalidrecordidexception.java

来自「有关j2me的很好的例子可以研究一下」· Java 代码 · 共 38 行

JAVA
38
字号
/* * @(#)InvalidRecordIDException.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 ID was invalid.  *  * @version MIDP 1.0 * @author Jim Van Peursem  */public class InvalidRecordIDException     extends RecordStoreException {     /**      * Constructs a new <code>InvalidRecordIDException</code> with the      * specified detail message.      *      * @param message the detail message.      */    public InvalidRecordIDException(String message) {	super(message);    }        /**      * Constructs a new <code>InvalidRecordIDException</code> with no detail      * message.      */    public InvalidRecordIDException() {    } } 

⌨️ 快捷键说明

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