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