Constructors Summary |
---|
public InvalidPropertyException()Create a InvalidPropertyException.
super();
|
public InvalidPropertyException(String message)Create a InvalidPropertyException.
super(message);
|
public InvalidPropertyException(Throwable cause)Constructs a new throwable with the specified cause.
super(cause);
|
public InvalidPropertyException(String message, Throwable cause)Constructs a new throwable with the specified detail message and cause.
super(message, cause);
|
public InvalidPropertyException(String message, String errorCode)Constructs a new throwable with the specified detail message and
an error code.
super(message, errorCode);
|