01: /*
02: *
03: *
04: * Portions Copyright 2000-2007 Sun Microsystems, Inc. All Rights
05: * Reserved. Use is subject to license terms.
06: * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER
07: *
08: * This program is free software; you can redistribute it and/or
09: * modify it under the terms of the GNU General Public License version
10: * 2 only, as published by the Free Software Foundation.
11: *
12: * This program is distributed in the hope that it will be useful, but
13: * WITHOUT ANY WARRANTY; without even the implied warranty of
14: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15: * General Public License version 2 for more details (a copy is
16: * included at /legal/license.txt).
17: *
18: * You should have received a copy of the GNU General Public License
19: * version 2 along with this work; if not, write to the Free Software
20: * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
21: * 02110-1301 USA
22: *
23: * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
24: * Clara, CA 95054 or visit www.sun.com if you need additional
25: * information or have any questions.
26: *
27: * Copyright 2000 Motorola, Inc. All Rights Reserved.
28: * This notice does not imply publication.
29: */
30:
31: package javax.microedition.rms;
32:
33: /**
34: * Thrown to indicate an operation could not be completed because the
35: * record ID was invalid.
36: *
37: * @since MIDP 1.0
38: */
39:
40: public class InvalidRecordIDException extends RecordStoreException {
41: /**
42: * Constructs a new <code>InvalidRecordIDException</code> with the
43: * specified detail message.
44: *
45: * @param message the detail message
46: */
47: public InvalidRecordIDException(String message) {
48: super (message);
49: }
50:
51: /**
52: * Constructs a new <code>InvalidRecordIDException</code> with no detail
53: * message.
54: */
55: public InvalidRecordIDException() {
56: }
57: }
|