Please note that the contents of this offline web site may be out of date. To access the most recent documentation visit the online version .
Note that links that point to online resources are green in color and will open in a new window.
We would love it if you could give us feedback about this material by filling this form (You have to be online to fill it)
Android APIs
public class

InvalidPropertiesFormatException

extends IOException
java.lang.Object
   ↳ java.lang.Throwable
     ↳ java.lang.Exception
       ↳ java.io.IOException
         ↳ java.util.InvalidPropertiesFormatException

Class Overview

An InvalidPropertiesFormatException is thrown if loading the XML document defining the properties does not follow the Properties specification. Even though this Exception inherits the Serializable interface, it is not serializable. The methods used for serialization throw NotSerializableException s.

Summary

Public Constructors
InvalidPropertiesFormatException ( String m)
Constructs a new InvalidPropertiesFormatException with the current stack trace and message filled in.
InvalidPropertiesFormatException ( Throwable c)
Constructs a new InvalidPropertiesFormatException with the cause for the Exception.
[Expand]
Inherited Methods
From class java.lang.Throwable
From class java.lang.Object

Public Constructors

public InvalidPropertiesFormatException ( String m)

Added in API level 1

Constructs a new InvalidPropertiesFormatException with the current stack trace and message filled in.

Parameters
m the detail message for the exception.

public InvalidPropertiesFormatException ( Throwable c)

Added in API level 1

Constructs a new InvalidPropertiesFormatException with the cause for the Exception.

Parameters
c the cause for the Exception.