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 {
public UTF8Exception(String reason) {
super(reason);
}
}