io.muserver.MuException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mu-server Show documentation
Show all versions of mu-server Show documentation
A simple but powerful web server framework
package io.muserver;
public class MuException extends RuntimeException {
public MuException(String message) {
super(message);
}
public MuException(String message, Throwable cause) {
super(message, cause);
}
public MuException(Throwable cause) {
super(cause);
}
}