• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

torand / openapi2java / 18202480060

02 Oct 2025 06:44PM UTC coverage: 81.561% (-0.8%) from 82.388%
18202480060

push

github

web-flow
Merge pull request #48 from torand/refactor-info-classes

Refactor info classes

507 of 736 branches covered (68.89%)

Branch coverage included in aggregate %.

825 of 934 new or added lines in 38 files covered. (88.33%)

11 existing lines in 7 files now uncovered.

1541 of 1775 relevant lines covered (86.82%)

5.09 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/src/main/java/io/github/torand/openapi2java/utils/OpenApi2JavaException.java
1
/*
2
 * Copyright (c) 2024-2025 Tore Eide Andersen
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 io.github.torand.openapi2java.utils;
17

18
/**
19
 * Generic runtime exception thrown by this plugin,
20
 */
21
public class OpenApi2JavaException extends RuntimeException {
22

23
    /**
24
     * Creates a runtime exception.
25
     * @param message the message.
26
     */
27
    public OpenApi2JavaException(String message) {
NEW
28
        super(message);
×
NEW
29
    }
×
30

31
    /**
32
     * Creates a runtime exception.
33
     * @param message the message.
34
     * @param cause the inner cause.
35
     */
36
    public OpenApi2JavaException(String message, Throwable cause) {
NEW
37
        super(message, cause);
×
NEW
38
    }
×
39

40
    /**
41
     * Creates a runtime exception.
42
     * @param cause the inner cause.
43
     */
44
    public OpenApi2JavaException(Throwable cause) {
NEW
45
        super(cause);
×
NEW
46
    }
×
47
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc