Package com.dd.plist
Class PropertyListFormatException
java.lang.Object
java.lang.Throwable
java.lang.Exception
com.dd.plist.PropertyListFormatException
- All Implemented Interfaces:
Serializable
A 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:
-
Constructor Summary
ConstructorsConstructorDescriptionPropertyListFormatException(String message) Creates a new exception with the given message.PropertyListFormatException(String message, Throwable cause) Creates a new exception with the given message. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
PropertyListFormatException
Creates a new exception with the given message.- Parameters:
message- A message containing information about the nature of the exception.
-
PropertyListFormatException
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.
-