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

torand / jsonschema2java / 18399814123

10 Oct 2025 07:35AM UTC coverage: 78.214% (-0.9%) from 79.157%
18399814123

push

github

torand
fix: bean validation annotations on primitive subtypes of compound pojo property types now generated

287 of 413 branches covered (69.49%)

Branch coverage included in aggregate %.

440 of 533 new or added lines in 26 files covered. (82.55%)

1 existing line in 1 file now uncovered.

808 of 987 relevant lines covered (81.86%)

4.75 hits per line

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

0.0
/src/main/java/io/github/torand/jsonschema2java/utils/JsonSchema2JavaException.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.jsonschema2java.utils;
17

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

23
    /**
24
     * Creates a runtime exception.
25
     * @param message the message.
26
     */
27
    public JsonSchema2JavaException(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 JsonSchema2JavaException(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 JsonSchema2JavaException(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