12 lines
257 B
Java
12 lines
257 B
Java
![]() |
package com.iluwatar.circuitbreaker;
|
||
|
|
||
|
/**
|
||
|
* Exception thrown when {@link RemoteService} does not respond successfully.
|
||
|
*/
|
||
|
public class RemoteServiceException extends Exception {
|
||
|
|
||
|
public RemoteServiceException(String message) {
|
||
|
super(message);
|
||
|
}
|
||
|
}
|