public class InvalidPropertiesFormatException extends IOException
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.| Constructor and Description |
|---|
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. |
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toStringpublic InvalidPropertiesFormatException(String m)
InvalidPropertiesFormatException with the
current stack trace and message filled in.m - the detail message for the exception.public InvalidPropertiesFormatException(Throwable c)
InvalidPropertiesFormatException with the cause
for the Exception.c - the cause for the Exception.