107e1d89f4f9e9bca8a7c88f45aba93c1c2b7e94
[aaf/authz.git] / cadi / oauth-enduser / src / main / java / org / onap / aaf / cadi / enduser / RESTException.java
1 /**
2  * ============LICENSE_START====================================================
3  * org.onap.aaf
4  * ===========================================================================
5  * Copyright (c) 2018 AT&T Intellectual Property. All rights reserved.
6  * ===========================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END====================================================
19  *
20  */
21 package org.onap.aaf.cadi.enduser;
22
23 import org.onap.aaf.cadi.client.Future;
24
25 public class RESTException extends Exception {
26     /**
27      * 
28      */
29     private static final long serialVersionUID = -5232371598208651058L;
30     private Future<?> future;
31
32     public RESTException(Future<?> future) {
33         this.future = future;
34     }
35     
36     public int getCode() {
37         return future.code();
38     }
39     
40     public String getMsg() {
41         return future.body();
42     }
43
44     public String errorString() {
45         String body = future.body();
46         return "RESTClient Error: "  + future.code() + ": " + (body.isEmpty()?"<no message in call>":body);
47     }
48
49     /* (non-Javadoc)
50      * @see java.lang.Throwable#getMessage()
51      */
52     @Override
53     public String getMessage() {
54         return errorString();
55     }
56
57     /* (non-Javadoc)
58      * @see java.lang.Throwable#getLocalizedMessage()
59      */
60     @Override
61     public String getLocalizedMessage() {
62         return errorString();
63     }
64     
65
66 }