Analysis-Services/MetadataTranslator/Metadata Translator/Helpers/NoResxMatchesException.cs
2021-03-26 14:17:03 -07:00

21 lines
515 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Metadata_Translator
{
public class NoResxMatchesException : Exception
{
public string ReferenceResx { get; set; }
public string TranslationResx { get; set; }
public NoResxMatchesException(string referenceResx, string translationResx)
{
ReferenceResx = referenceResx;
TranslationResx = translationResx;
}
}
}