com.netflix.eureka2.channel.RetryableEurekaChannelException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of eureka-core Show documentation
Show all versions of eureka-core Show documentation
eureka-core developed by Netflix
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