fixed some formatting typos
[vimdoclet.git] / sample / java.util.InvalidPropertiesFormatException.txt
blob0faf959d40707454f79c41aee3972849a611887b
1 *java.util.InvalidPropertiesFormatException* *InvalidPropertiesFormatException* 
3 public class InvalidPropertiesFormatException
4   extends    |java.io.IOException|
6 |java.util.InvalidPropertiesFormatException_Description|
7 |java.util.InvalidPropertiesFormatException_Fields|
8 |java.util.InvalidPropertiesFormatException_Constructors|
9 |java.util.InvalidPropertiesFormatException_Methods|
11 ================================================================================
13 *java.util.InvalidPropertiesFormatException_Constructors*
14 |java.util.InvalidPropertiesFormatException(String)|Constructs an InvalidProper
15 |java.util.InvalidPropertiesFormatException(Throwable)|Constructs an InvalidPro
17 *java.util.InvalidPropertiesFormatException_Description*
19 Thrown to indicate that an operation could not complete because the input did 
20 not conform to the appropriate XML document type for a collection of 
21 properties, as per the (|java.util.Properties|) specification. 
23 Note, that although InvalidPropertiesFormatException inherits Serializable 
24 interface from Exception, it is not intended to be Serializable. Appropriate 
25 serialization methods are implemented to throw NotSerializableException. 
29 *java.util.InvalidPropertiesFormatException(String)*
31 public InvalidPropertiesFormatException(java.lang.String message)
33 Constructs an InvalidPropertiesFormatException with the specified detail 
34 message. 
36     message - the detail message. The detail message is saved for later retrieval by the 
37        {@link Throwable#getMessage()} method. 
39 *java.util.InvalidPropertiesFormatException(Throwable)*
41 public InvalidPropertiesFormatException(java.lang.Throwable cause)
43 Constructs an InvalidPropertiesFormatException with the specified cause. 
45     cause - the cause (which is saved for later retrieval by the {@link 
46        Throwable#getCause()} method).