Class FallbackService
java.lang.Object
org.eclipse.microprofile.fault.tolerance.tck.fallback.exception.hierarchy.FallbackService
-
Constructor Summary
Constructors -
Method Summary
-
Constructor Details
-
FallbackService
public FallbackService()
-
-
Method Details
-
serviceA
@Fallback(applyOn={E0.class,E2.class}, skipOn=E1.class, fallbackMethod="myFallback") public String serviceA(Throwable exception) throws Throwable - Throws:
Throwable
-
serviceB
@Fallback(applyOn={java.lang.Exception.class,E1.class}, skipOn={E0.class,E2.class}, fallbackMethod="myFallback") public String serviceB(Throwable exception) throws Throwable - Throws:
Throwable
-
serviceC
@Fallback(applyOn={E1.class,E2.class}, skipOn=E0.class, fallbackMethod="myFallback") public String serviceC(Throwable exception) throws Throwable - Throws:
Throwable
-
getFallbackValue
-