com.files.exceptions.ApiCheckedException 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 ApiCheckedException extends Exception {
private static final long serialVersionUID = -5050286401142662224L;
public ApiCheckedException() {
super();
}
public ApiCheckedException(String s) {
super(s);
}
public ApiCheckedException(Exception e) {
super(e);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy