com.exaroton.api.APIException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of api Show documentation
Show all versions of api Show documentation
The official exaroton java library
The newest version!
package com.exaroton.api;
public class APIException extends Exception {
public APIException(String message) {
super(message);
}
public APIException(String message, Throwable cause) {
super(message, cause);
}
}