jodd.joy.server.ServerException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of joy-boot-jetty9 Show documentation
Show all versions of joy-boot-jetty9 Show documentation
Jodd Joy Bootstrap for Jetty 9.x
The newest version!
package jodd.joy.server;
/**
* Server exception.
*/
public class ServerException extends RuntimeException {
public ServerException(String message, Throwable cause) {
super(message, cause);
}
}