Constructors Summary |
---|
public UnexpectedPropertySetTypeException()Creates an {@link UnexpectedPropertySetTypeException}.
super();
|
public UnexpectedPropertySetTypeException(String msg)Creates an {@link UnexpectedPropertySetTypeException} with a message
string.
super(msg);
|
public UnexpectedPropertySetTypeException(Throwable reason)Creates a new {@link UnexpectedPropertySetTypeException} with a
reason.
super(reason);
|
public UnexpectedPropertySetTypeException(String msg, Throwable reason)Creates an {@link UnexpectedPropertySetTypeException} with a message
string and a reason.
super(msg, reason);
|