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

public class RestApplicationException extends RestException {

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

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