/
vshmidt
/
masstransit
Обзор
Документация
Войти
/
vshmidt
/
masstransit
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
src/MassTransit.Abstractions/Exceptions/ValueFactoryException.cs
33 строки
746 B
joegoldman2
Add .NET 8 TFM (#4791)
28 ноя 2023, 16:55
Не верифицирован
28 ноя 2023, 16:55
35743ce
Код
Авторство
О чём код?
namespace MassTransit { 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) { } } }