mirror of
https://github.com/nsnail/FreeSql.git
synced 2025-04-25 04:02:51 +08:00
10 lines
213 B
C#
10 lines
213 B
C#
using System;
|
|
|
|
namespace FreeSql.Extensions.ZeroEntity.Models
|
|
{
|
|
public class SchemaValidationException : Exception
|
|
{
|
|
public SchemaValidationException(string message) : base(message) { }
|
|
}
|
|
}
|