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

com.netflix.eureka2.channel.RetryableEurekaChannelException Maven / Gradle / Ivy

The newest version!
package com.netflix.eureka2.channel;

/**
 * @author David Liu
 */
public class RetryableEurekaChannelException extends Exception {

    public RetryableEurekaChannelException(String msg) {
        super(msg);
    }

    public RetryableEurekaChannelException(String msg, Throwable th) {
        super(msg, th);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy