com.xiaomi.infra.galaxy.fds.client.exception.GalaxyFDSClientException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of galaxy-fds-sdk-java Show documentation
Show all versions of galaxy-fds-sdk-java Show documentation
Xiaomi File Storage Service SDK
package com.xiaomi.infra.galaxy.fds.client.exception;
public class GalaxyFDSClientException extends GalaxyException {
private static final long serialVersionUID = -1734780212731437463L;
private int statusCode;
public GalaxyFDSClientException() {}
public GalaxyFDSClientException(String message) {
super(message);
}
public GalaxyFDSClientException(Throwable cause) {
super(cause);
}
public GalaxyFDSClientException(String message, Throwable cause) {
super(message, cause);
}
public GalaxyFDSClientException(String message, int statusCode) {
this(message);
this.statusCode = statusCode;
}
public int getStatusCode() {
return this.statusCode;
}
}