costLimitExceeded static method
Implementation
static SDKException costLimitExceeded(
double estimated,
double limit,
) => _build(
code: pb_enum.ErrorCode.ERROR_CODE_COST_LIMIT_EXCEEDED,
category: pb_enum.ErrorCategory.ERROR_CATEGORY_INTERNAL,
message:
'Cost limit exceeded: estimated \$${estimated.toStringAsFixed(2)}, limit \$${limit.toStringAsFixed(2)}',
);