Avoid memory allocation, use cache and static Signed-off-by: Pavel Gross <p.gross@yando.com>
9 lines
No EOL
204 B
C#
9 lines
No EOL
204 B
C#
using FrostFS.SDK.ModelsV2;
|
|
using System;
|
|
|
|
namespace FrostFS.SDK.ClientV2;
|
|
|
|
public class ResponseException(ResponseStatus status) : Exception()
|
|
{
|
|
public ResponseStatus Status { get; set; } = status;
|
|
} |