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