You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I think we should consolidate all errors (such as kQueueArgErr, kFormatTypeMismatch) in one header file, preferably under one enum. We can have duplicate names with the same value such as for Argument Errors on different nodes/features.
We also have code like these:
errPtr->SetErrorAndAppendCallChain(true, kVariantIncompatibleType, "Get Variant Attribute");
Instead of using a hardcoded string we need to do string constants and consolidate them in a single place. We also need to consider localization.
The text was updated successfully, but these errors were encountered:
I think we should consolidate all errors (such as kQueueArgErr, kFormatTypeMismatch) in one header file, preferably under one enum. We can have duplicate names with the same value such as for Argument Errors on different nodes/features.
We also have code like these:
errPtr->SetErrorAndAppendCallChain(true, kVariantIncompatibleType, "Get Variant Attribute");
Instead of using a hardcoded string we need to do string constants and consolidate them in a single place. We also need to consider localization.
The text was updated successfully, but these errors were encountered: