com.files.exceptions.ApiRuntimeException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of files-sdk Show documentation
Show all versions of files-sdk Show documentation
The Files.com Java client library provides convenient access to the Files.com API from JVM based applications.
package com.files.exceptions;
public class ApiRuntimeException extends RuntimeException {
private static final long serialVersionUID = 2665759897774399981L;
public ApiRuntimeException() {
super();
}
public ApiRuntimeException(String s) {
super(s);
}
public ApiRuntimeException(String s, String hb) {
super(s);
}
public ApiRuntimeException(String s, String hb, Throwable t) {
super(s, t);
}
public ApiRuntimeException(String s, Throwable t) {
super(s, t);
}
public ApiRuntimeException(Throwable t) {
super(t);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy