in reply to Re^3: inline::java problem
in thread inline::java problem

This is an exception that's been thrown. Catch the exception (read up on eval and $@), and figure out which class has not been found. The exception object should have a getMessage method.

perl -E'sub Monkey::do{say$_,for@_,do{($monkey=[caller(0)]->[3])=~s{::}{ }and$monkey}}"Monkey say"->Monkey::do'

Replies are listed 'Best First'.
Re^5: inline::java problem
by cliffrubinmusic (Novice) on Jul 18, 2012 at 06:13 UTC
    That did it!! Thank you so much for all your help