1 /*
2  * Copyright (c) 2003, 2019, Oracle and/or its affiliates. All rights reserved.
3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4  *
5  * This code is free software; you can redistribute it and/or modify it
6  * under the terms of the GNU General Public License version 2 only, as
7  * published by the Free Software Foundation.  Oracle designates this
8  * particular file as subject to the "Classpath" exception as provided
9  * by Oracle 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 Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
22  * or visit www.oracle.com if you need additional information or have any
23  * 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  * @see     Properties
42  * @since   1.5
43  * @serial exclude
44  */
45 
46 public class InvalidPropertiesFormatException extends IOException {
47 
48     @java.io.Serial
49     private static final long serialVersionUID = 7763056076009360219L;
50 
51     /**
52      * Constructs an InvalidPropertiesFormatException with the specified
53      * cause.
54      *
55      * @param  cause the cause (which is saved for later retrieval by the
56      *         {@link Throwable#getCause()} method).
57      */
InvalidPropertiesFormatException(Throwable cause)58     public InvalidPropertiesFormatException(Throwable cause) {
59         super(cause==null ? null : cause.toString());
60         this.initCause(cause);
61     }
62 
63    /**
64     * Constructs an InvalidPropertiesFormatException with the specified
65     * detail message.
66     *
67     * @param   message   the detail message. The detail message is saved for
68     *          later retrieval by the {@link Throwable#getMessage()} method.
69     */
InvalidPropertiesFormatException(String message)70     public InvalidPropertiesFormatException(String message) {
71         super(message);
72     }
73 
74     /**
75      * Throws NotSerializableException, since InvalidPropertiesFormatException
76      * objects are not intended to be serializable.
77      */
78     @java.io.Serial
writeObject(java.io.ObjectOutputStream out)79     private void writeObject(java.io.ObjectOutputStream out)
80         throws NotSerializableException
81     {
82         throw new NotSerializableException("Not serializable.");
83     }
84 
85     /**
86      * Throws NotSerializableException, since InvalidPropertiesFormatException
87      * objects are not intended to be serializable.
88      */
89     @java.io.Serial
readObject(java.io.ObjectInputStream in)90     private void readObject(java.io.ObjectInputStream in)
91         throws NotSerializableException
92     {
93         throw new NotSerializableException("Not serializable.");
94     }
95 
96 }
97