Fix checkstyle violations in sdc/jtosca
[sdc/sdc-tosca.git] / src / main / java / org / onap / sdc / toscaparser / api / common / TOSCAException.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
4  * ================================================================================
5  * Copyright (C) 2019 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.sdc.toscaparser.api.common;
22
23 import java.util.IllegalFormatException;
24
25 public class TOSCAException extends Exception {
26     private String message = "An unkown exception has occurred";
27     private static boolean FATAL_EXCEPTION_FORMAT_ERRORS = false;
28     private String msgFmt = null;
29
30     public TOSCAException(String... strings) {
31         try {
32             message = String.format(msgFmt, (Object[]) strings);
33         } catch (IllegalFormatException e) {
34             // TODO log
35
36             if (FATAL_EXCEPTION_FORMAT_ERRORS) {
37                 throw e;
38             }
39
40         }
41
42     }
43
44     public String __str__() {
45         return message;
46     }
47
48     public static void generate_inv_schema_property_error(String name, String attr, String value, String valid_values) {
49         //TODO
50
51     }
52
53     public static void setFatalFormatException(boolean flag) {
54         FATAL_EXCEPTION_FORMAT_ERRORS = flag;
55     }
56
57 }
58