Annotation Interface GRpcExceptionHandler
Marks the annotated method eligible for handling the specific exception type. The signature of
the method HAS to be as follows:
, example:
Status handlerName(Exception type,GRpcExceptionScope scope) , example:
public io.grpc.Status handlerName(MyCustomException ex,GRpcExceptionScope scope){
...
}