Project

General

Profile

1 54525 panagiotis
package eu.dnetlib.repo.manager.exception;
2
3 54745 panagiotis
import java.io.IOException;
4 54525 panagiotis
5 54745 panagiotis
//@ResponseStatus(HttpStatus.GATEWAY_TIMEOUT)
6
public class EndPointException extends IOException {
7
8 54525 panagiotis
    public EndPointException() {
9
            super("Endpoint not responding!");
10
        }
11
12
    public EndPointException(String url) {
13
            super("Endpoint with url: " + url + " not responding!");
14
        }
15
16
}