Skip to content

Commit 52c6527

Browse files
authored
Feature/open api improvement (#70)
* Fix documentation on windows * Update postman collection with movement example * Update pom.xml * Change ubuntu version to v20.04 * Change all checks for ubuntu check * Remove graalvm sdk from pom * Revert awt reflect config * Revert to latest ubuntu on gh actions * Add json and yml resource path and property into codebase * Add openApi unit test for resource path * Extend unit tests and add wrong resource path id check * Add postman collection for open api generation
1 parent 869af7e commit 52c6527

File tree

6 files changed

+538
-46
lines changed

6 files changed

+538
-46
lines changed
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
/*
2+
* Copyright (c) 2023 Robert Bosch Manufacturing Solutions GmbH
3+
*
4+
* See the AUTHORS file(s) distributed with this work for
5+
* additional information regarding authorship.
6+
*
7+
* This Source Code Form is subject to the terms of the Mozilla Public
8+
* License, v. 2.0. If a copy of the MPL was not distributed with this
9+
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
10+
*
11+
* SPDX-License-Identifier: MPL-2.0
12+
*/
13+
14+
package org.eclipse.esmf.ame.exceptions;
15+
16+
import java.io.Serial;
17+
18+
import lombok.Getter;
19+
20+
@Getter
21+
public class GenerationException extends RuntimeException {
22+
@Serial
23+
private static final long serialVersionUID = 1L;
24+
25+
/**
26+
* Constructs a GenerationException with message and cause.
27+
*
28+
* @param message the message of the exception
29+
*/
30+
public GenerationException( final String message ) {
31+
super( message );
32+
}
33+
}

0 commit comments

Comments
 (0)