URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [libjava/] [classpath/] [tools/] [resource/] [gnu/] [classpath/] [tools/] [rmic/] [templates/] [Stub_12MethodVoid.jav] - Rev 779
Compare with Previous | Blame | View Log
/** @inheritDoc */
public void #method_name(#argument_list) #throws
{
try
{
ref.invoke(this, met_#method_name,
#object_arg_list,
#method_hash);
}
catch (RuntimeException e)
{
throw e;
}
catch (RemoteException e)
{
throw e;
}
catch (Exception e)
{
UnexpectedException uex = new UnexpectedException(exception_message);
uex.detail = e;
throw uex;
}
}