Files
java-design-patterns/circuit-breaker/src/main/java/com/iluwatar/circuitbreaker/RemoteServiceException.java

12 lines
257 B
Java
Raw Normal View History

package com.iluwatar.circuitbreaker;
/**
* Exception thrown when {@link RemoteService} does not respond successfully.
*/
public class RemoteServiceException extends Exception {
public RemoteServiceException(String message) {
super(message);
}
}