server.embedded.ServerInitException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of server-embedded Show documentation
Show all versions of server-embedded Show documentation
Framework for delivering desktop application updates
The newest version!
package server.embedded;
public final class ServerInitException extends Exception {
public ServerInitException(String message) {
super(message);
}
public ServerInitException(Throwable cause) {
super(cause);
}
}