com.founder.api.factory.RpcCommonAmpFallbackFactory Maven / Gradle / Ivy
package com.founder.api.factory;
import com.founder.api.RpcCommonAmpService;
import org.springframework.cloud.openfeign.FallbackFactory;
import org.springframework.stereotype.Component;
@Component
public class RpcCommonAmpFallbackFactory implements FallbackFactory {
@Override
public RpcCommonAmpService create(Throwable cause) {
return null;
}
}