GqlException.throwError constructor

GqlException.throwError(
  1. Object e,
  2. StackTrace s
)

Implementation

factory GqlException.throwError(
  final Object e, final StackTrace s
) => GqlException(
  e is GqlException ? e.message : e.toString()
);