org.webbitserver.helpers.UTF8Exception Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of webbit Show documentation
Show all versions of webbit Show documentation
A Java event based WebSocket and HTTP server
package org.webbitserver.helpers;
public class UTF8Exception extends RuntimeException {
private static final long serialVersionUID = 3599440257713569059L;
public UTF8Exception(String reason) {
super(reason);
}
}