Constructors Summary |
---|
public NNTPException(String msg)Create an NNTPException with an error message and no
encapsulated Throwable
super(msg);
this.t = null;
|
public NNTPException(String msg, Throwable t)Create an NNTPException with an error message and an
encapsulated Throwable
super(msg+((t!=null)?": "+t.toString():""));
this.t = t;
|
public NNTPException(Throwable t)Create an NNTPException with an
encapsulated Throwable
super(t.toString());
this.t = t;
|