From: Beck, Johannes

Subject: RE: JLinker documentation

Date: 2001-8-16 2:51

> ACL>(jcons "HelloWorld" "java.lang.String") > Error: Java error: java.lang.NoSuchMethodException: <init> > result= "java.lang.NoSuchMethodException: <init>" > > What the heck is this? I'd know if I could decrypt the documentation.
This is an exception from the JAVA Runtime (a "Java error"), which means that the method "<init>" does not exists in your class ("java.lang.NoSuchMethodException"). <init> is the name Java uses for the constructor of the class. So I would say you should introduce a public default constructor in your class. This information can be found in any Java book introducing the language Java and you won't find this in any documentation on integrating LISP and Java. For doing such tasks you should be fluent in LISP and Java or you will have serious troubles in understanding what's happening. Regards Joe