package info.frostfs.sdk.exceptions; import info.frostfs.sdk.dto.response.ResponseStatus; public class ResponseException extends RuntimeException { private final ResponseStatus status; public ResponseException(ResponseStatus status) { super(status.toString()); this.status = status; } public ResponseStatus getStatus() { return status; } }