forked from TrueCloudLab/frostfs-sdk-java
16 lines
388 B
Java
16 lines
388 B
Java
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;
|
|
}
|
|
}
|