Constructors Summary |
---|
public PrintException()Construct a print exception with no detail message.
super();
|
public PrintException(String s)Construct a print exception with the given detail message.
super (s);
|
public PrintException(Exception e)Construct a print exception chaining the supplied exception.
super ( e);
|
public PrintException(String s, Exception e)Construct a print exception with the given detail message
and chained exception.
super (s, e);
|