Dmitry Zhikharev
Results
2
comments of
Dmitry Zhikharev
Thrift generated sources always declare a `org.apache.thrift.TException` on methods: ``` public class TService { public interface Iface { public Response act() throws MyException, org.apache.thrift.TException; ... } } ``` An implementing...
Hmm, maybe it's worth deleting any exception wrapping from `LoggingThriftMethodInterceptor`. It's an interceptor for _logging_ an it shouldn't interfere with application flow. Then, should you throw a `RuntimeExcepton` from your...