com.xiaomi.infra.galaxy.fds.client.exception.GalaxyException 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 GalaxyException extends Exception {
private static final long serialVersionUID = -7433612752769161900L;
public GalaxyException() {
super();
}
public GalaxyException(String message, Throwable cause) {
super(message, cause);
}
public GalaxyException(String message) {
super(message);
}
public GalaxyException(Throwable cause) {
super(cause);
}
}