
com.alibaba.dubbo.registry.support.SkipFailbackWrapperException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dubbo2 Show documentation
Show all versions of dubbo2 Show documentation
The all in one project of dubbo2
The newest version!
package com.alibaba.dubbo.registry.support;
/**
* Wrapper异常,用于指示 {@link FailbackRegistry}跳过Failback。
*
* NOTE: 期望找到其它更常规的指示方式。
*
* @author ding.lid
* @see FailbackRegistry
*/
public class SkipFailbackWrapperException extends RuntimeException {
public SkipFailbackWrapperException(Throwable cause) {
super(cause);
}
@Override
public synchronized Throwable fillInStackTrace() {
// do nothing
return null;
}
}