The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
package org.perl.inline.java ;


class InlineJavaThrown {
	Throwable t ;

	InlineJavaThrown(Throwable _t){
		t = _t ;
	}

	Throwable GetThrowable(){
		return t ;
	}
}