using System;
using System.Collections.Generic;
using System.Text;
namespace Knoks.Core.Logic.Interfaces
{
public interface IValidationException
string Message { get; }
IDictionary<string, string> Errors { get; }
}