aboutsummaryrefslogtreecommitdiffstats
path: root/services/src/main/java/org/onap/ccsdk/apps/services/RestTransportException.java
blob: 971ee9b789c7ccbe1ec192ba8fee10585dd963ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package org.onap.ccsdk.apps.services;

public class RestTransportException extends RestException {

    public RestTransportException(String errorTag, String errorMessage, int status) {
        this.restError = new RestTransportError(errorTag, errorMessage);
        this.status = status;
    }

    public RestTransportException(String errorTag, String errorMessage, Throwable t, int status) {
        this.restError = new RestTransportError(errorTag, errorMessage, t);
        this.status = status;
    }
}