author | smarks |
Mon, 02 Jul 2012 14:11:44 -0700 | |
changeset 13158 | f628cbfcbfa0 |
parent 5506 | 202f599c92aa |
child 14342 | 8435a30053c1 |
permissions | -rw-r--r-- |
2 | 1 |
/* |
5506 | 2 |
* Copyright (c) 2003, Oracle and/or its affiliates. All rights reserved. |
2 | 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 |
|
5506 | 7 |
* published by the Free Software Foundation. Oracle designates this |
2 | 8 |
* particular file as subject to the "Classpath" exception as provided |
5506 | 9 |
* by Oracle in the LICENSE file that accompanied this code. |
2 | 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 |
* |
|
5506 | 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. |
|
2 | 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 { |
|
13158
f628cbfcbfa0
7176907: additional warnings cleanup in java.util, java.util.regexp, java.util.zip
smarks
parents:
5506
diff
changeset
|
47 |
|
f628cbfcbfa0
7176907: additional warnings cleanup in java.util, java.util.regexp, java.util.zip
smarks
parents:
5506
diff
changeset
|
48 |
private static final long serialVersionUID = 7763056076009360219L; |
f628cbfcbfa0
7176907: additional warnings cleanup in java.util, java.util.regexp, java.util.zip
smarks
parents:
5506
diff
changeset
|
49 |
|
2 | 50 |
/** |
51 |
* Constructs an InvalidPropertiesFormatException with the specified |
|
52 |
* cause. |
|
53 |
* |
|
54 |
* @param cause the cause (which is saved for later retrieval by the |
|
55 |
* {@link Throwable#getCause()} method). |
|
56 |
*/ |
|
57 |
public InvalidPropertiesFormatException(Throwable cause) { |
|
58 |
super(cause==null ? null : cause.toString()); |
|
59 |
this.initCause(cause); |
|
60 |
} |
|
61 |
||
62 |
/** |
|
63 |
* Constructs an InvalidPropertiesFormatException with the specified |
|
64 |
* detail message. |
|
65 |
* |
|
66 |
* @param message the detail message. The detail message is saved for |
|
67 |
* later retrieval by the {@link Throwable#getMessage()} method. |
|
68 |
*/ |
|
69 |
public InvalidPropertiesFormatException(String message) { |
|
70 |
super(message); |
|
71 |
} |
|
72 |
||
73 |
/** |
|
74 |
* Throws NotSerializableException, since InvalidPropertiesFormatException |
|
75 |
* objects are not intended to be serializable. |
|
76 |
*/ |
|
77 |
private void writeObject(java.io.ObjectOutputStream out) |
|
78 |
throws NotSerializableException |
|
79 |
{ |
|
80 |
throw new NotSerializableException("Not serializable."); |
|
81 |
} |
|
82 |
||
83 |
/** |
|
84 |
* Throws NotSerializableException, since InvalidPropertiesFormatException |
|
85 |
* objects are not intended to be serializable. |
|
86 |
*/ |
|
87 |
private void readObject(java.io.ObjectInputStream in) |
|
88 |
throws NotSerializableException |
|
89 |
{ |
|
90 |
throw new NotSerializableException("Not serializable."); |
|
91 |
} |
|
92 |
||
93 |
} |