All checks were successful
DCO / DCO (pull_request) Successful in 47s
API methods' parameters types with optional session, polling settings, xHeaders etc. and corresponding handlers have been added Signed-off-by: Pavel Gross <p.gross@yadro.com>
12 lines
No EOL
222 B
C#
12 lines
No EOL
222 B
C#
using System;
|
|
using FrostFS.SDK.ModelsV2;
|
|
|
|
public class ResponseException : Exception
|
|
{
|
|
public Status Status { get; set; }
|
|
|
|
public ResponseException(Status status) : base()
|
|
{
|
|
Status = status;
|
|
}
|
|
} |