Changeset 12332


Ignore:
Timestamp:
01/05/10 14:24:05 (13 years ago)
Author:
astalla
Message:

Small change in an exception message.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/abcl/src/org/armedbear/lisp/scripting/AbclScriptEngine.java

    r12256 r12332  
    294294      JavaObject iface = new JavaObject(clasz);
    295295      return (T) ((JavaObject) s.execute(iface, (LispObject) thiz)).javaInstance();
    296   } 
     296  }
    297297 
    298298    @Override
     
    323323    @Override
    324324    public Object invokeMethod(Object thiz, String name, Object... args) throws ScriptException, NoSuchMethodException {
    325   throw new UnsupportedOperationException("Common Lisp does not have methods in the Java sense.");
     325  throw new UnsupportedOperationException("Common Lisp does not have methods in the Java sense. Use invokeFunction instead.");
    326326    }
    327327
Note: See TracChangeset for help on using the changeset viewer.