Details
-
Improvement
-
Status: Resolved
-
Major
-
Resolution: Works for Me
-
0.13.0
-
None
-
None
Description
At the moment, if an exception is defined in IDL and Java code is generated for it, the exception would be defined as extending TException like this:
public class MyException extends org.apache.thrift.TException implements ...
At the same time, definition of methods looks like this:
public int myMethod(int argument) throws MyException, org.apache.thrift.TException { ... }
Here, TException has to be included as that is the only way to signal that RPC call has failed for whatever reason.
Now the problem with this is that if one calls a method like that, it is obvious that TException covers all those exceptions defined in IDL and so there is no way to clearly see which exceptions are result of internal workings of Thrift and which ones correspond to situations described in IDL:
try { myMethod(123); } catch (TException e) { log.error("Problem spotted", e); }
Why not make extensions extend java.lang.Exception instead?
public class MyException extends java.lang.Exception implements ...
This would have made it clear which exceptions are throwable by the call as "catch (TException e)" would not catch them and explicit catching would be in order:
try { myMethod(123); } catch (MyException e) { log.error("MyException has been thrown"); } catch (TException e) { log.error("Problem spotted", e); }
Attachments
Issue Links
- relates to
-
THRIFT-237 Update Exception class generation to TException decendent
-
- Closed
-