/
krasninja
/
querycat
Обзор
Документация
Войти
/
krasninja
/
querycat
Код
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
src/QueryCat.Backend/Commands/CannotFindIdentifierException.cs
22 строки
582 B
Ivan Kozhin
Add more code comments
22 янв 2024, 18:36
22 янв 2024, 18:36
cda3b0a
Код
Авторство
О чём код?
using QueryCat.Backend.Core; namespace QueryCat.Backend.Commands; /// <summary> /// The exception occurs when application cannot find /// identifier within current scope. /// </summary> [Serializable] #pragma warning disable CA2229 public class CannotFindIdentifierException : SemanticException #pragma warning restore CA2229 { /// <summary> /// Constructor. /// </summary> /// <param name="name">The name of the identifier.</param> public CannotFindIdentifierException(string name) : base($"Column or variable '{name}' does not exist.") { } }