Development of NETCONF RPCs for tr-069 adapter to
[oam/tr069-adapter.git] / acs / common / src / main / java / org / commscope / tr069adapter / acs / common / exception / ACSException.java
1 /*
2  * ============LICENSE_START========================================================================
3  * ONAP : tr-069-adapter
4  * =================================================================================================
5  * Copyright (C) 2020 CommScope Inc Intellectual Property.
6  * =================================================================================================
7  * This tr-069-adapter software file is distributed by CommScope Inc under the Apache License,
8  * Version 2.0 (the "License"); you may not use this file except in compliance with the License. You
9  * may obtain a copy of the License at
10  *
11  * http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
14  * either express or implied. See the License for the specific language governing permissions and
15  * limitations under the License.
16  * ===============LICENSE_END=======================================================================
17  */
18
19 package org.commscope.tr069adapter.acs.common.exception;
20
21 import org.commscope.tr069adapter.acs.common.utils.ErrorCode;
22 import org.commscope.tr069adapter.acs.common.utils.Utility;
23
24 public class ACSException extends Exception {
25
26   private static final long serialVersionUID = 9116478433222830454L;
27
28   private static final String ERRORMSG_PREFIX = "TR069";
29
30   private final ErrorCode errorCode;
31
32   private final String[] arguments;
33
34   private final String message;
35
36   /**
37    * @param s
38    */
39   public ACSException(String s) {
40     super(s);
41     this.errorCode = null;
42     this.arguments = null;
43     this.message = "";
44   }
45
46   /**
47    * @param errorCode
48    */
49   public ACSException(ErrorCode errorCode) {
50     super();
51     this.errorCode = errorCode;
52     this.arguments = null;
53     this.message = getErrorMessage();
54   }
55
56
57   public ACSException(ErrorCode errorCode, String... args) {
58     super();
59     this.errorCode = errorCode;
60     arguments = args;
61     this.message = getErrorMessage();
62   }
63
64   public ErrorCode getErrorCode() {
65     return errorCode;
66   }
67
68
69   @Override
70   public String getMessage() {
71     return message;
72   }
73
74   private String getErrorMessage() {
75     String key = ERRORMSG_PREFIX + "." + errorCode.getErrorCodeKey();
76     return Utility.getMessage(key, arguments);
77   }
78
79 }