workaroud for snor issue
[vfc/nfvo/wfengine.git] / baseservice-i18n / src / main / java / org / openo / baseservice / i18n / ErrorCodeException.java
1 /**
2  * Copyright 2017 ZTE Corporation.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 package org.openo.baseservice.i18n;
17
18 public class ErrorCodeException extends Exception {
19
20     private static final long serialVersionUID = 5522808473663280894L;
21
22     private int errorCode;
23
24     /**
25      * Error definition placeholder replacement
26      */
27     private String[] arguments;
28
29     /**
30      * According to the original exception, error code, debug print information and construct a new anomaly placeholder
31      *
32      * @param source
33      * @param errorCode
34      * @param debugMessage
35      * @param arguments
36      */
37     public ErrorCodeException(Throwable source, int errorCode, String debugMessage, String[] arguments) {
38         super(debugMessage, source);
39
40         this.errorCode = errorCode;
41
42         this.arguments = arguments;
43     }
44
45     public int getErrorCode() {
46         return errorCode;
47     }
48
49     public String[] getArguments() {
50         return arguments;
51     }
52
53 }