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