1
2
3
4
5
6
7
8
9
10
11
12
| package org.jeecg.modules.lims.api.fallback;
|
| import feign.hystrix.FallbackFactory;
|
| import org.jeecg.modules.lims.api.JeecgSystemClient;
|
| public class JeecgSystemClientFallback implements FallbackFactory<JeecgSystemClient> {
| @Override
| public JeecgSystemClient create(Throwable throwable) {
| return null;
| }
| }
|
|