1 8 9 15 package jfun.yan; 16 17 import jfun.util.Misc; 18 19 20 29 public class NonReadablePropertyException extends InvalidPropertyException { 30 31 36 public NonReadablePropertyException(Class type, String name) { 37 super(type, name, 38 "property " + name + " not readable in type "+Misc.getTypeName(type)); 39 40 } 41 47 public NonReadablePropertyException(Class type, String name, String msg) { 48 super(type, name, msg); 49 50 } 51 } 52 53 | Popular Tags |