/
vshmidt
/
masstransit
Обзор
Документация
Войти
/
vshmidt
/
masstransit
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
src/MassTransit/Internals/Caching/ValueFactoryException.cs
33 строки
769 B
Chris Patterson
Massive file cleanup
27 мар 2024, 02:43
27 мар 2024, 02:43
2ac69e8
Код
Авторство
О чём код?
namespace MassTransit.Internals.Caching { using System; using System.Runtime.Serialization; [Serializable] public class ValueFactoryException : Exception { public ValueFactoryException() { } public ValueFactoryException(string message) : base(message) { } #if NET8_0_OR_GREATER [Obsolete("Formatter-based serialization is obsolete and should not be used.")] #endif protected ValueFactoryException(SerializationInfo info, StreamingContext context) : base(info, context) { } public ValueFactoryException(string message, Exception innerException) : base(message, innerException) { } } }