FileDocCategorySizeDatePackage
InvalidPropertiesFormatException.javaAPI DocAndroid 1.5 API2401Wed May 06 22:41:04 BST 2009java.util

InvalidPropertiesFormatException

public class InvalidPropertiesFormatException extends IOException
An {@code InvalidPropertiesFormatException} is thrown if loading the XML document defining the properties does not follow the {@code Properties} specification. Even though this Exception inherits the {@code Serializable} interface, it is not serializable. The methods used for serialization throw {@code NotSerializableException}s.
since
Android 1.0

Fields Summary
private static final long
serialVersionUID
Constructors Summary
public InvalidPropertiesFormatException(String m)
Constructs a new {@code InvalidPropertiesFormatException} with the current stack trace and message filled in.

param
m the detail message for the exception.


                                          
       
        super(m);
    
public InvalidPropertiesFormatException(Throwable c)
Constructs a new {@code InvalidPropertiesFormatException} with the cause for the Exception.

param
c the cause for the Exception.

        initCause(c);
    
Methods Summary
private voidreadObject(java.io.ObjectInputStream in)

        throw new NotSerializableException();        
    
private voidwriteObject(java.io.ObjectOutputStream out)

        throw new NotSerializableException();