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

jreleaser / jreleaser / #527

05 Aug 2025 04:08PM UTC coverage: 49.206% (-0.06%) from 49.267%
#527

push

github

aalmiray
build: Remove mocked test cases

26265 of 53378 relevant lines covered (49.21%)

0.49 hits per line

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

33.33
/api/jreleaser-model-api/src/main/java/org/jreleaser/model/JReleaserException.java
1
/*
2
 * SPDX-License-Identifier: Apache-2.0
3
 *
4
 * Copyright 2020-2025 The JReleaser authors.
5
 *
6
 * Licensed under the Apache License, Version 2.0 (the "License");
7
 * you may not use this file except in compliance with the License.
8
 * You may obtain a copy of the License at
9
 *
10
 *     https://www.apache.org/licenses/LICENSE-2.0
11
 *
12
 * Unless required by applicable law or agreed to in writing, software
13
 * distributed under the License is distributed on an "AS IS" BASIS,
14
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15
 * See the License for the specific language governing permissions and
16
 * limitations under the License.
17
 */
18
package org.jreleaser.model;
19

20
/**
21
 * @author Andres Almiray
22
 * @since 0.1.0
23
 */
24
public class JReleaserException extends RuntimeException {
25
    private static final long serialVersionUID = -3119921124179882553L;
26

27
    public JReleaserException(String message) {
28
        super(message);
×
29
    }
×
30

31
    public JReleaserException(String message, Throwable cause) {
32
        super(message, cause);
1✔
33
    }
1✔
34

35
    public JReleaserException(Throwable cause) {
36
        super(cause);
×
37
    }
×
38
}
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