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

com.nike.riposte.server.error.exception.HostnameResolutionException Maven / Gradle / Ivy

There is a newer version: 0.20.0
Show newest version
package com.nike.riposte.server.error.exception;

/**
 * Thrown when a hostname resolution attempt fails. Should usually map to a 503 HTTP status code.
 *
 * @author Nic Munroe
 */
public class HostnameResolutionException extends RuntimeException {

    public HostnameResolutionException(String message, Throwable cause) {
        super(message, cause);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy