01 /*
02 * Copyright 2003 Sun Microsystems, Inc. All Rights Reserved.
03 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
04 *
05 * This code is free software; you can redistribute it and/or modify it
06 * under the terms of the GNU General Public License version 2 only, as
07 * published by the Free Software Foundation. Sun designates this
08 * particular file as subject to the "Classpath" exception as provided
09 * by Sun in the LICENSE file that accompanied this code.
10 *
11 * This code is distributed in the hope that it will be useful, but WITHOUT
12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14 * version 2 for more details (a copy is included in the LICENSE file that
15 * accompanied this code).
16 *
17 * You should have received a copy of the GNU General Public License version
18 * 2 along with this work; if not, write to the Free Software Foundation,
19 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20 *
21 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
22 * CA 95054 USA or visit www.sun.com if you need additional information or
23 * have any questions.
24 */
25
26 package java.util;
27
28 import java.io.NotSerializableException;
29 import java.io.IOException;
30
31 /**
32 * Thrown to indicate that an operation could not complete because
33 * the input did not conform to the appropriate XML document type
34 * for a collection of properties, as per the {@link Properties}
35 * specification.<p>
36 *
37 * Note, that although InvalidPropertiesFormatException inherits Serializable
38 * interface from Exception, it is not intended to be Serializable. Appropriate
39 * serialization methods are implemented to throw NotSerializableException.
40 *
41 * @version 1.10 07/05/05
42 * @see Properties
43 * @since 1.5
44 * @serial exclude
45 */
46
47 public class InvalidPropertiesFormatException extends IOException {
48 /**
49 * Constructs an InvalidPropertiesFormatException with the specified
50 * cause.
51 *
52 * @param cause the cause (which is saved for later retrieval by the
53 * {@link Throwable#getCause()} method).
54 */
55 public InvalidPropertiesFormatException(Throwable cause) {
56 super (cause == null ? null : cause.toString());
57 this .initCause(cause);
58 }
59
60 /**
61 * Constructs an InvalidPropertiesFormatException with the specified
62 * detail message.
63 *
64 * @param message the detail message. The detail message is saved for
65 * later retrieval by the {@link Throwable#getMessage()} method.
66 */
67 public InvalidPropertiesFormatException(String message) {
68 super (message);
69 }
70
71 /**
72 * Throws NotSerializableException, since InvalidPropertiesFormatException
73 * objects are not intended to be serializable.
74 */
75 private void writeObject(java.io.ObjectOutputStream out)
76 throws NotSerializableException {
77 throw new NotSerializableException("Not serializable.");
78 }
79
80 /**
81 * Throws NotSerializableException, since InvalidPropertiesFormatException
82 * objects are not intended to be serializable.
83 */
84 private void readObject(java.io.ObjectInputStream in)
85 throws NotSerializableException {
86 throw new NotSerializableException("Not serializable.");
87 }
88
89 }
|