1 19 20 package com.maverick.http; 21 22 26 public class UnsupportedAuthenticationException extends Exception { 27 28 String [] methods; 29 30 public UnsupportedAuthenticationException(String [] methods) { 31 this(methods, Messages.getString("UnsupportedAuthenticationException.notSupported")); } 33 34 public UnsupportedAuthenticationException(String [] methods, String str) { 35 super(str); 36 this.methods = methods; 37 } 38 39 public String [] getMethods() { 40 return methods; 41 } 42 43 } 44 | Popular Tags |