19 lines
740 B
C#
19 lines
740 B
C#
using System.Collections.Generic;
|
|
|
|
namespace NodePipeline.Constants.Exceptions;
|
|
|
|
public static class PipelineValidation
|
|
{
|
|
public const string PipelineValidationException = "NodePipeline.Constants.Exceptions.PipelineValidation." +
|
|
nameof(PipelineValidationException);
|
|
|
|
public static readonly Dictionary<string, string> MessagesEn = new()
|
|
{
|
|
{ PipelineValidationException, "Pipeline [{0}] has [{1}] exceptions and [{2}] warnings." }
|
|
};
|
|
|
|
public static readonly Dictionary<string, string> MessagesRu = new()
|
|
{
|
|
{ PipelineValidationException, "Пайплайн [{0}] содержит [{1}] ошибок и [{2}] предупреждений." }
|
|
};
|
|
} |