< prev index next >

src/java.base/share/classes/java/util/InvalidPropertiesFormatException.java

Print this page




  28 import java.io.NotSerializableException;
  29 import java.io.IOException;
  30 
  31 /**
  32  * Thrown to indicate that an operation could not complete because
  33  * the input did not conform to the appropriate XML document type
  34  * for a collection of properties, as per the {@link Properties}
  35  * specification.<p>
  36  *
  37  * Note, that although InvalidPropertiesFormatException inherits Serializable
  38  * interface from Exception, it is not intended to be Serializable. Appropriate
  39  * serialization methods are implemented to throw NotSerializableException.
  40  *
  41  * @see     Properties
  42  * @since   1.5
  43  * @serial exclude
  44  */
  45 
  46 public class InvalidPropertiesFormatException extends IOException {
  47 

  48     private static final long serialVersionUID = 7763056076009360219L;
  49 
  50     /**
  51      * Constructs an InvalidPropertiesFormatException with the specified
  52      * cause.
  53      *
  54      * @param  cause the cause (which is saved for later retrieval by the
  55      *         {@link Throwable#getCause()} method).
  56      */
  57     public InvalidPropertiesFormatException(Throwable cause) {
  58         super(cause==null ? null : cause.toString());
  59         this.initCause(cause);
  60     }
  61 
  62    /**
  63     * Constructs an InvalidPropertiesFormatException with the specified
  64     * detail message.
  65     *
  66     * @param   message   the detail message. The detail message is saved for
  67     *          later retrieval by the {@link Throwable#getMessage()} method.
  68     */
  69     public InvalidPropertiesFormatException(String message) {
  70         super(message);
  71     }
  72 
  73     /**
  74      * Throws NotSerializableException, since InvalidPropertiesFormatException
  75      * objects are not intended to be serializable.
  76      */

  77     private void writeObject(java.io.ObjectOutputStream out)
  78         throws NotSerializableException
  79     {
  80         throw new NotSerializableException("Not serializable.");
  81     }
  82 
  83     /**
  84      * Throws NotSerializableException, since InvalidPropertiesFormatException
  85      * objects are not intended to be serializable.
  86      */

  87     private void readObject(java.io.ObjectInputStream in)
  88         throws NotSerializableException
  89     {
  90         throw new NotSerializableException("Not serializable.");
  91     }
  92 
  93 }


  28 import java.io.NotSerializableException;
  29 import java.io.IOException;
  30 
  31 /**
  32  * Thrown to indicate that an operation could not complete because
  33  * the input did not conform to the appropriate XML document type
  34  * for a collection of properties, as per the {@link Properties}
  35  * specification.<p>
  36  *
  37  * Note, that although InvalidPropertiesFormatException inherits Serializable
  38  * interface from Exception, it is not intended to be Serializable. Appropriate
  39  * serialization methods are implemented to throw NotSerializableException.
  40  *
  41  * @see     Properties
  42  * @since   1.5
  43  * @serial exclude
  44  */
  45 
  46 public class InvalidPropertiesFormatException extends IOException {
  47 
  48     @java.io.Serial
  49     private static final long serialVersionUID = 7763056076009360219L;
  50 
  51     /**
  52      * Constructs an InvalidPropertiesFormatException with the specified
  53      * cause.
  54      *
  55      * @param  cause the cause (which is saved for later retrieval by the
  56      *         {@link Throwable#getCause()} method).
  57      */
  58     public InvalidPropertiesFormatException(Throwable cause) {
  59         super(cause==null ? null : cause.toString());
  60         this.initCause(cause);
  61     }
  62 
  63    /**
  64     * Constructs an InvalidPropertiesFormatException with the specified
  65     * detail message.
  66     *
  67     * @param   message   the detail message. The detail message is saved for
  68     *          later retrieval by the {@link Throwable#getMessage()} method.
  69     */
  70     public InvalidPropertiesFormatException(String message) {
  71         super(message);
  72     }
  73 
  74     /**
  75      * Throws NotSerializableException, since InvalidPropertiesFormatException
  76      * objects are not intended to be serializable.
  77      */
  78     @java.io.Serial
  79     private void writeObject(java.io.ObjectOutputStream out)
  80         throws NotSerializableException
  81     {
  82         throw new NotSerializableException("Not serializable.");
  83     }
  84 
  85     /**
  86      * Throws NotSerializableException, since InvalidPropertiesFormatException
  87      * objects are not intended to be serializable.
  88      */
  89     @java.io.Serial
  90     private void readObject(java.io.ObjectInputStream in)
  91         throws NotSerializableException
  92     {
  93         throw new NotSerializableException("Not serializable.");
  94     }
  95 
  96 }
< prev index next >