1 16 package java.util; 17 18 23 public class MissingResourceException extends RuntimeException { 24 private String className; 25 26 private String key; 27 28 public MissingResourceException(String s, String className, String key) { 29 super(s); 30 this.key = key; 31 this.className = className; 32 } 33 34 public String getClassName() { 35 return className; 36 } 37 38 public String getKey() { 39 return key; 40 } 41 } 42 | Popular Tags |