onGQLError<T> method
Error handling method that implementations can override
Implementation
@override
GQLResult<T> onGQLError<T>(GQLException exception, StackTrace stackTrace) {
logException(exception, stackTrace);
return Failure<T>(exception: GQLException.fromException(exception));
}