1
0

14 lines
331 B
C#

namespace Flawless.Communication.Response;
public record UnintendedExceptionResponse
{
public string ExceptionType { get; }
public string ExceptionMessage { get; }
public UnintendedExceptionResponse(Exception e)
{
ExceptionType = e.GetType().FullName;
ExceptionMessage = e.Message;
}
}