internalError static method

SDKException internalError([
  1. String? message
])

Implementation

static SDKException internalError([String? message]) => _build(
  code: pb_enum.ErrorCode.ERROR_CODE_INTERNAL,
  category: pb_enum.ErrorCategory.ERROR_CATEGORY_INTERNAL,
  message: message ?? 'An internal error occurred.',
);