org.ligboy.translate.exception.IllegalTokenKeyException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of google-translate Show documentation
Show all versions of google-translate Show documentation
Hack API for Google Translate.
package org.ligboy.translate.exception;
/**
* @author Ligboy Liu ([email protected]).
*/
public class IllegalTokenKeyException extends Exception {
public IllegalTokenKeyException() {
}
public IllegalTokenKeyException(String message) {
super(message);
}
public IllegalTokenKeyException(String message, Throwable cause) {
super(message, cause);
}
public IllegalTokenKeyException(Throwable cause) {
super(cause);
}
public IllegalTokenKeyException(String message, Throwable cause, boolean enableSuppression,
boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy