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 NotSerializableExceptions.

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.