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

com.github.thorbenkuck.network.exceptions.FailedEncodingException Maven / Gradle / Ivy

The newest version!
package com.github.thorbenkuck.network.exceptions;

public class FailedEncodingException extends NetworkException {

	public FailedEncodingException() {
	}

	public FailedEncodingException(String message) {
		super(message);
	}

	public FailedEncodingException(String message, Throwable cause) {
		super(message, cause);
	}

	public FailedEncodingException(Throwable cause) {
		super(cause);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy