Constructors Summary |
---|
public ProtocolException()Constructs a ProtocolException with no detail message.
super();
|
public ProtocolException(String message)Constructs a ProtocolException with the specified detail message.
super(message);
|
public ProtocolException(String message, Throwable cause)Constructs a ProtocolException with the specified detail message
and cause.
super(message, cause);
|
public ProtocolException(Response r)Constructs a ProtocolException with the specified Response object.
super(r.toString());
response = r;
|