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
TerminologyServiceExceptionResult currently looks like this:
public enum TerminologyServiceExceptionResult
{
/// <summary>
/// Return a warning in case of an exception in Terminology Service.
/// </summary>
Warning,
/// <summary>
/// Return an error in case of an exception in Terminology Service.
/// </summary>
Error,
}
It does not provide the possiblity to not report anything if the term service reports an exception. I think that the custom handler that returns this enum should be able to say: "I know that this failure is not important, just ignore it".
The text was updated successfully, but these errors were encountered:
TerminologyServiceExceptionResult currently looks like this:
It does not provide the possiblity to not report anything if the term service reports an exception. I think that the custom handler that returns this enum should be able to say: "I know that this failure is not important, just ignore it".
The text was updated successfully, but these errors were encountered: