if (clr == null) throw new IllegalArgumentException("Null ClassLoaderRepository object."); repository = clr; this.cl2 = cl2;
try { return repository.loadClass(name); } catch (ClassNotFoundException cne) { if (cl2 != null) { return cl2.loadClass(name); } else { throw cne; } }