Inventory TreeView Fixed
[ccsdk/features.git] / sdnr / wt / oauth-provider / oauth-core / src / main / java / org / onap / ccsdk / features / sdnr / wt / oauthprovider / data / UnableToConfigureOAuthService.java
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 }