/
krasninja
/
querycat
Обзор
Документация
Войти
/
krasninja
/
querycat
Код
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
src/QueryCat.Backend/Storage/IOSourceException.cs
22 строки
533 B
Ivan Kozhin
Create Core module, move main classes there
24 авг 2023, 19:38
24 авг 2023, 19:38
4588519
Код
Авторство
О чём код?
using QueryCat.Backend.Core; namespace QueryCat.Backend.Storage; /// <summary> /// This is the base exception for input/output storage /// operations. /// </summary> [Serializable] #pragma warning disable CA2229 // ReSharper disable once InconsistentNaming public class IOSourceException : QueryCatException #pragma warning restore CA2229 { /// <summary> /// Constructor. /// </summary> /// <param name="message">Exception message.</param> public IOSourceException(string message) : base(message) { } }