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