com.github.debugthug.exceptions.IncorrectRequestException Maven / Gradle / Ivy
package com.github.debugthug.exceptions;
public class IncorrectRequestException extends Exception {
/**
*
*/
private static final long serialVersionUID = 4686147786120984674L;
public IncorrectRequestException(String message, Throwable cause) {
super(message, cause);
}
public IncorrectRequestException(String message) {
super(message);
}
public IncorrectRequestException(Throwable cause) {
super(cause);
}
}