1da989bfb77b68c62bbc22319cd04c8805c079cb
[so.git] / bpmn / MSOCommonBPMN / src / main / java / org / onap / so / bpmn / common / exceptions / MalformedBuildingBlockInputException.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
4  * ================================================================================
5  * Copyright (C) 2017 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.so.bpmn.common.exceptions;
22
23 public class MalformedBuildingBlockInputException extends RuntimeException {
24         private static final long serialVersionUID = -9168146273898271648L;
25
26         public MalformedBuildingBlockInputException() {
27                 super();
28         }
29
30         public MalformedBuildingBlockInputException(String message) {
31                 super(message);
32         }
33
34         public MalformedBuildingBlockInputException(String message, Throwable cause) {
35                 super(message, cause);
36         }
37
38         public MalformedBuildingBlockInputException(Throwable cause) {
39                 super(cause);
40         }
41
42         protected MalformedBuildingBlockInputException(String message, Throwable cause,
43                         boolean enableSuppression,
44                         boolean writableStackTrace) {
45                 super(message, cause, enableSuppression, writableStackTrace);
46         }
47 }