All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.kiwiproject.dropwizard.util.exception.NoAvailablePortException Maven / Gradle / Ivy

There is a newer version: 4.0.1
Show newest version
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);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy