org.kiwiproject.dropwizard.util.exception.NoAvailablePortException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dropwizard-service-utilities Show documentation
Show all versions of dropwizard-service-utilities Show documentation
Set of utilities to aid in setting up Dropwizard services
package org.kiwiproject.dropwizard.util.exception;
/**
* Exception indicating that all attempts to find an open part have been exhausted.
*/
public class NoAvailablePortException extends RuntimeException {
public NoAvailablePortException(String message) {
super(message);
}
}