home *** CD-ROM | disk | FTP | other *** search
- package java.net;
-
- import java.io.IOException;
- import java.security.PrivilegedExceptionAction;
- import sun.misc.Resource;
-
- class URLClassLoader$1 implements PrivilegedExceptionAction {
- // $FF: synthetic field
- private final String val$name;
- // $FF: synthetic field
- private final URLClassLoader this$0;
-
- URLClassLoader$1(URLClassLoader var1, String var2) {
- this.this$0 = var1;
- this.val$name = var2;
- }
-
- public Object run() throws ClassNotFoundException {
- String var1 = this.val$name.replace('.', '/').concat(".class");
- Resource var2 = URLClassLoader.access$000(this.this$0).getResource(var1, false);
- if (var2 != null) {
- try {
- return URLClassLoader.access$100(this.this$0, this.val$name, var2);
- } catch (IOException var4) {
- throw new ClassNotFoundException(this.val$name, var4);
- }
- } else {
- throw new ClassNotFoundException(this.val$name);
- }
- }
- }
-