1 30 31 package org.apache.commons.httpclient.auth; 32 33 40 public class AuthChallengeException extends AuthenticationException { 41 42 45 public AuthChallengeException() { 46 super(); 47 } 48 49 54 public AuthChallengeException(String message) { 55 super(message); 56 } 57 58 65 public AuthChallengeException(String message, Throwable cause) { 66 super(message, cause); 67 } 68 69 } 70 | Popular Tags |