I want the Avro generated Java class methods to have throws
AvroRemoteException ? How to code this in my Avro IDL file ?

Suppose I have this RPC message in my Avro protocol:

void foo(int arg) throws something;

so the generated Avro POJO has:

void foo(int arg) throws AvroRemoteException

What should put instead of something ?

Using Avro 1.11.0

Reply via email to