aboutsummaryrefslogtreecommitdiffstats
path: root/common-app-api/src/main/java/org/openecomp/sdc/common/http/client/api/Responses.java
blob: 6f34f8007103ea7a7d0cb1e7d5863aeb4e97330f (plain)
1
2
3
4
5
6
7
8
9
10
package org.openecomp.sdc.common.http.client.api;

import org.apache.http.HttpStatus;

public final class Responses {
    public static final HttpResponse<String> INTERNAL_SERVER_ERROR = new HttpResponse<>("Internal server error", HttpStatus.SC_INTERNAL_SERVER_ERROR);
    
    private Responses() {
    }
}