The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package org.perl.inline.java ;

class InlineJavaInvocationTargetException extends InlineJavaException {
	private Throwable t ;


	InlineJavaInvocationTargetException(String m, Throwable _t){
		super(m) ;
		t = _t ;
	}

	Throwable GetThrowable(){
		return t ;
	}
}