aboutsummaryrefslogtreecommitdiffstats
path: root/vid-app-common/src/main/java/org/onap/vid/client/SyncRestClientException.java
blob: 2a4f093b179a30fbab8c7d990a75bf56e8f316f7 (plain)
1
2
3
4
5
6
7
package org.onap.vid.client;

public class SyncRestClientException extends RuntimeException {
    public SyncRestClientException(String message, Throwable cause) {
        super(message, cause);
    }
}