1 8 14 package jfun.yan; 15 16 24 public class UnresolvedComponentException extends 25 ComponentResolutionException { 26 private final Object key; 27 32 public UnresolvedComponentException(Object k, String msg) { 33 super(msg); 34 this.key = k; 35 } 36 37 41 public UnresolvedComponentException(Object k) { 42 super("component <"+k + "> not resolved"); 43 this.key = k; 44 } 45 49 public Object getComponentKey(){ 50 return key; 51 } 52 } 53 | Popular Tags |