b791a4040cef55b94cc015f759f0b4c02bb605ce
[ccsdk/features.git] /
1 package org.onap.ccsdk.features.sdnr.wt.oauthprovider.data;
2
3 public class UnableToConfigureOAuthService extends Exception {
4
5     public UnableToConfigureOAuthService(String configUrl){
6         super(String.format("Unable to configure OAuth service from url %s", configUrl));
7     }
8     public UnableToConfigureOAuthService(String configUrl, int responseCode){
9         super(String.format("Unable to configure OAuth service from url %s. bad response with code %d", configUrl, responseCode));
10     }
11
12 }