Constructors Summary |
---|
public InvalidPreferencesFormatException(String s)Constructs a new {@code InvalidPreferencesFormatException} instance with a
detailed exception message.
super(s);
|
public InvalidPreferencesFormatException(String s, Throwable t)Constructs a new {@code InvalidPreferencesFormatException} instance with a
detailed exception message and a nested {@code Throwable}.
super(s,t);
|
public InvalidPreferencesFormatException(Throwable t)Constructs a new {@code InvalidPreferencesFormatException} instance with a nested
{@code Throwable}.
super(t);
|