Skip to content

Commit

Permalink
Feature/open api improvement (#70)
Browse files Browse the repository at this point in the history
* 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
  • Loading branch information
michelu89 authored Apr 15, 2024
1 parent 869af7e commit 52c6527
Show file tree
Hide file tree
Showing 6 changed files with 538 additions and 46 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
/*
* Copyright (c) 2023 Robert Bosch Manufacturing Solutions GmbH
*
* See the AUTHORS file(s) distributed with this work for
* additional information regarding authorship.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*
* SPDX-License-Identifier: MPL-2.0
*/

package org.eclipse.esmf.ame.exceptions;

import java.io.Serial;

import lombok.Getter;

@Getter
public class GenerationException extends RuntimeException {
@Serial
private static final long serialVersionUID = 1L;

/**
* Constructs a GenerationException with message and cause.
*
* @param message the message of the exception
*/
public GenerationException( final String message ) {
super( message );
}
}
Loading

0 comments on commit 52c6527

Please sign in to comment.