Package com.dd.plist

Class PropertyListFormatException

  • All Implemented Interfaces:
    java.io.Serializable

    public class PropertyListFormatException
    extends java.lang.Exception
    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:
    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.
    • Method Summary

      • Methods inherited from class java.lang.Throwable

        addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • 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.