/
krasninja
/
querycat
Обзор
Документация
Войти
/
krasninja
/
querycat
Код
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
src/QueryCat.Backend.Core/SemanticException.cs
18 строк
427 B
Ivan Kozhin
Create Core module, move main classes there
24 авг 2023, 19:38
24 авг 2023, 19:38
4588519
Код
Авторство
О чём код?
namespace QueryCat.Backend.Core; /// <summary> /// The exception occurs on semantic error. /// </summary> [Serializable] #pragma warning disable CA2229 public class SemanticException : QueryCatException #pragma warning restore CA2229 { /// <summary> /// Constructor. /// </summary> /// <param name="message">Exception message.</param> public SemanticException(string message) : base(message) { } }