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