com.github.thorbenkuck.network.exceptions.FailedDecodingException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of easy-net Show documentation
Show all versions of easy-net Show documentation
An EventStream driven, simple to use Client/Server framework
The newest version!
package com.github.thorbenkuck.network.exceptions;
public class FailedDecodingException extends NetworkException {
public FailedDecodingException() {
}
public FailedDecodingException(String message) {
super(message);
}
public FailedDecodingException(String message, Throwable cause) {
super(message, cause);
}
public FailedDecodingException(Throwable cause) {
super(cause);
}
}