ifAsyncWeCant method

void ifAsyncWeCant(
  1. String activityStr
)

Implementation

void ifAsyncWeCant(String activityStr) {
  if (_asyncContinueActive) {
    throw Exception("Can't " +
        activityStr +
        '. Story is in the middle of a ContinueAsync(). Make more ContinueAsync() calls or a single Continue() call beforehand.');
  }
}