All Downloads are FREE. Search and download functionalities are using the official Maven repository.

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);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy