Home | History | Annotate | Download | only in cookie

Lines Matching refs:message

54      * Creates a new MalformedCookieException with a <tt>null</tt> detail message.
61 * Creates a new MalformedCookieException with a specified message string.
63 * @param message The exception detail message
65 public MalformedCookieException(String message) {
66 super(message);
70 * Creates a new MalformedCookieException with the specified detail message and cause.
72 * @param message the exception detail message
76 public MalformedCookieException(String message, Throwable cause) {
77 super(message, cause);