com.github.gossie.circuitbreaker.IntegrationPointExecutionException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of circuit-breaker Show documentation
Show all versions of circuit-breaker Show documentation
A lightweight circuit breaker framework
The newest version!
package com.github.gossie.circuitbreaker;
/**
* The exception is thrown by the {@link ServiceCall} if an execution error occurs.
*/
class IntegrationPointExecutionException extends RuntimeException {
private static final long serialVersionUID = -3032993760324114414L;
IntegrationPointExecutionException(Throwable t) {
super(t);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy