Lines Matching refs:message
36 * For example a malformed status line or headers, a missing message body, etc.
47 * Creates a new ProtocolException with a <tt>null</tt> detail message.
54 * Creates a new ProtocolException with the specified detail message.
56 * @param message The exception detail message
58 public ProtocolException(String message) {
59 super(message);
63 * Creates a new ProtocolException with the specified detail message and cause.
65 * @param message the exception detail message
69 public ProtocolException(String message, Throwable cause) {
70 super(message, cause);