aboutsummaryrefslogtreecommitdiffstats
path: root/common/src/main/java/org/onap/so/rest/exceptions/ExhaustedRetriesException.java
blob: 6c91516b84304bed9ac9bf706a6d13c7df80ce55 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package org.onap.so.rest.exceptions;

public class ExhaustedRetriesException extends RuntimeException {

    private static final long serialVersionUID = -8303091412739222943L;

    public ExhaustedRetriesException(String s) {
        super(s);
    }

    public ExhaustedRetriesException(Throwable t) {
        super(t);
    }

    public ExhaustedRetriesException(String s, Throwable t) {
        super(s, t);
    }

}