1
0
mirror of https://github.com/nsnail/FreeSql.git synced 2025-04-28 05:32:51 +08:00

10 lines
213 B
C#

using System;
namespace FreeSql.Extensions.ZeroEntity.Models
{
public class SchemaValidationException : Exception
{
public SchemaValidationException(string message) : base(message) { }
}
}