Package com.dd.plist
Class PropertyListFormatException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com.dd.plist.PropertyListFormatException
-
- All Implemented Interfaces:
java.io.Serializable
public class PropertyListFormatException extends java.lang.ExceptionA PropertyListFormatException is thrown by the various property list format parsers when an error in the format of the given property list is encountered.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description PropertyListFormatException(java.lang.String message)Creates a new exception with the given message.PropertyListFormatException(java.lang.String message, java.lang.Throwable cause)Creates a new exception with the given message.
-
-
-
Constructor Detail
-
PropertyListFormatException
public PropertyListFormatException(java.lang.String message)
Creates a new exception with the given message.- Parameters:
message- A message containing information about the nature of the exception.
-
PropertyListFormatException
public PropertyListFormatException(java.lang.String message, java.lang.Throwable cause)Creates a new exception with the given message.- Parameters:
message- A message containing information about the nature of the exception.cause- The original exception that caused this exception.
-
-