(Class clas, Class[] types)
| 872 | |
| 873 | |
| 874 | private static ReflectError cantFindConstructor(Class clas, Class[] types) { |
| 875 | if (types.length == 0) { |
| 876 | return new ReflectError("Can't find default constructor for: " + clas); |
| 877 | } else { |
| 878 | return new ReflectError("Can't find constructor: " + StringUtil.methodString(clas.getName(), types) + " in class: " + clas.getName()); |
| 879 | } |
| 880 | } |
| 881 | |
| 882 | |
| 883 | private static boolean isPublic(Member member) { |
no test coverage detected