1 8 14 package jfun.yan; 15 16 import jfun.util.Misc; 17 18 27 public class NonWritablePropertyException extends InvalidPropertyException { 28 29 34 public NonWritablePropertyException(Class type, String name) { 35 super(type, name, 36 "property " + name + " not writable in type "+Misc.getTypeName(type)); 37 38 } 39 45 public NonWritablePropertyException(Class type, String name, String msg) { 46 super(type, name, msg); 47 48 } 49 } 50 | Popular Tags |