use of graphql.execution.DataFetcherExceptionHandler in project graphql-java by graphql-java.
the class ExecutionExamples method exceptionHandler.
private void exceptionHandler() {
DataFetcherExceptionHandler handler = new DataFetcherExceptionHandler() {
@Override
public void accept(DataFetcherExceptionHandlerParameters handlerParameters) {
//
// do your custom handling here. The parameters have all you need
}
};
ExecutionStrategy executionStrategy = new AsyncExecutionStrategy(handler);
}
Aggregations